summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2008-07-28 10:08:52 +0000
committerSimon Marlow <marlowsd@gmail.com>2008-07-28 10:08:52 +0000
commitb27c1019b4cc57baa4b8f35e6834391188b5a16e (patch)
treec02025e45d911fc7431afe6af13eb4d289bef62c /Makefile
parentfcc3794aeb78081c04103a0b7e7560cb8c7bea58 (diff)
downloadhaskell-b27c1019b4cc57baa4b8f35e6834391188b5a16e.tar.gz
change where we put gcc-lib/ld.exe to keep Cabal happy
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2b6fcb9c7d..290407af9d 100644
--- a/Makefile
+++ b/Makefile
@@ -179,13 +179,13 @@ all :: stamp.inplace-gcc-lib
# tree somewhere, and then have install copy it from there rather than
# from the filesystem.
stamp.inplace-gcc-lib:
- $(RM) -r compiler/gcc-lib
- mkdir compiler/gcc-lib
- cp $(LD) compiler/gcc-lib
+ $(RM) -r ghc/gcc-lib
+ mkdir ghc/gcc-lib
+ cp $(LD) ghc/gcc-lib
touch $@
clean ::
- $(RM) -r compiler/gcc-lib
+ $(RM) -r ghc/gcc-lib
$(RM) -f inplace-gcc-lib
endif
endif