diff options
author | Duncan Coutts <duncan@well-typed.com> | 2009-05-14 18:42:16 +0000 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2009-05-14 18:42:16 +0000 |
commit | 11d4f6867b6a1088eeb809c4520ea1e40b1e68f4 (patch) | |
tree | 23fc86371abe591bfa9696a7ff5abe04088436bb /rts | |
parent | 16a9e2dc8e5a75f55a375b3dd6e9cf47dfc38985 (diff) | |
download | haskell-11d4f6867b6a1088eeb809c4520ea1e40b1e68f4.tar.gz |
Fix silly make macro mistake in a rule used in the --enable-shared case
Diffstat (limited to 'rts')
-rw-r--r-- | rts/ghc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk index c4a3dd5042..169e4b1dfd 100644 --- a/rts/ghc.mk +++ b/rts/ghc.mk @@ -75,8 +75,8 @@ rts_H_FILES = $(wildcard $(GHC_INCLUDE_DIR)/*.h) $(wildcard rts/*.h) # collect the -l flags that we need to link the rts dyn lib. rts/libs.depend : $(GHC_PKG_INPLACE) - $$(GHC_PKG_INPLACE) field rts extra-libraries \ - | sed -e 's/^extra-libraries: //' -e 's/\([a-z]*\)/-l\1/g' > $$@ + $(GHC_PKG_INPLACE) field rts extra-libraries \ + | sed -e 's/^extra-libraries: //' -e 's/\([a-z]*\)/-l\1/g' > $@ #----------------------------------------------------------------------------- # Building one way |