diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-26 12:26:37 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-26 12:26:37 +0000 |
commit | 2bfebb2de8dcd00385eb07e42b5f4853a542298d (patch) | |
tree | 546236186e11a1058aaef68a7c74510de8b641af /rts/Makefile | |
parent | cf2ee54939510b1a64ad99ca7d00aeb8a862c06b (diff) | |
download | haskell-2bfebb2de8dcd00385eb07e42b5f4853a542298d.tar.gz |
Add STANDARD_OPTS to SRC_HC_OPTS in rts/Makefile so we get -I../includes for .cmm files
Patch from Clemens Fruhwirth
Diffstat (limited to 'rts/Makefile')
-rw-r--r-- | rts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Makefile b/rts/Makefile index e3bc692d5f..7e9dc08941 100644 --- a/rts/Makefile +++ b/rts/Makefile @@ -133,7 +133,7 @@ SRC_CC_OPTS += $(WARNING_OPTS) SRC_CC_OPTS += $(STANDARD_OPTS) SRC_CC_OPTS += $(GhcRtsCcOpts) -SRC_HC_OPTS += $(GhcRtsHcOpts) -package-name rts +SRC_HC_OPTS += $(GhcRtsHcOpts) $(STANDARD_OPTS) -package-name rts ifneq "$(GhcWithSMP)" "YES" SRC_CC_OPTS += -DNOSMP |