diff options
author | Simon Marlow <marlowsd@gmail.com> | 2008-07-28 10:08:52 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2008-07-28 10:08:52 +0000 |
commit | b27c1019b4cc57baa4b8f35e6834391188b5a16e (patch) | |
tree | c02025e45d911fc7431afe6af13eb4d289bef62c /Makefile | |
parent | fcc3794aeb78081c04103a0b7e7560cb8c7bea58 (diff) | |
download | haskell-b27c1019b4cc57baa4b8f35e6834391188b5a16e.tar.gz |
change where we put gcc-lib/ld.exe to keep Cabal happy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |