From 68b932d7105c40f3111c4d84117aefdc6f2d3edd Mon Sep 17 00:00:00 2001 From: sof Date: Fri, 17 Sep 1999 11:38:18 +0000 Subject: [PATCH] [project @ 1999-09-17 11:38:18 by sof] Consistently use .dll_o for toplevel object files that are to be included with all DLL-based apps --- ghc/driver/ghc.lprl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/driver/ghc.lprl b/ghc/driver/ghc.lprl index 481636a..9d395ba 100644 --- a/ghc/driver/ghc.lprl +++ b/ghc/driver/ghc.lprl @@ -2009,8 +2009,8 @@ sub prepareWin32DllLink () } push(@Link_file, ( $INSTALLING ) ? "$InstLibDirGhc/Main.dll_o" : "$TopPwd/$CURRENT_DIR/$GHC_RUNTIME_DIR/Main.dll_o") if $linking_main; - push(@Link_file, ( $INSTALLING ) ? "$InstLibDirGhc/PrelMain.o" - : "$TopPwd/$CURRENT_DIR/$GHC_LIB_DIR/PrelMain.o") if $linking_main; + push(@Link_file, ( $INSTALLING ) ? "$InstLibDirGhc/PrelMain.dll_o" + : "$TopPwd/$CURRENT_DIR/$GHC_LIB_DIR/std/PrelMain.dll_o") if $linking_main; } push(@Ld_flags, "-mno-cygwin"); } -- 1.7.10.4