From: Duncan Coutts Date: Thu, 14 May 2009 18:42:16 +0000 (+0000) Subject: Fix silly make macro mistake in a rule used in the --enable-shared case X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=11d4f6867b6a1088eeb809c4520ea1e40b1e68f4 Fix silly make macro mistake in a rule used in the --enable-shared case --- diff --git a/rts/ghc.mk b/rts/ghc.mk index c4a3dd5..169e4b1 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