From 11d4f6867b6a1088eeb809c4520ea1e40b1e68f4 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Thu, 14 May 2009 18:42:16 +0000 Subject: [PATCH] Fix silly make macro mistake in a rule used in the --enable-shared case --- rts/ghc.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4