diff options
author | simonmar <unknown> | 2000-07-06 09:35:37 +0000 |
---|---|---|
committer | simonmar <unknown> | 2000-07-06 09:35:37 +0000 |
commit | 07080fd8df2efba05acc475999fa00473af604e4 (patch) | |
tree | 6da8f4930e074c4be5560eb55830e805d4f1afed /ghc | |
parent | 5cbfe4e7d5cd2550ccb848a850366c27a4f5d999 (diff) | |
download | haskell-07080fd8df2efba05acc475999fa00473af604e4.tar.gz |
[project @ 2000-07-06 09:35:37 by simonmar]
ghc 4.06 didn't have -package, so use it only for 4.07+.
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/driver/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/driver/Makefile b/ghc/driver/Makefile index 715770a711..f81e3b331d 100644 --- a/ghc/driver/Makefile +++ b/ghc/driver/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.40 2000/06/30 09:46:04 simonmar Exp $ +# $Id: Makefile,v 1.41 2000/07/06 09:35:37 simonmar Exp $ # TOP=.. @@ -10,8 +10,8 @@ ifeq "$(GhcWithHscBuiltViaC)" "YES" HC=$(GHC_INPLACE) endif -ghc_406_at_least = $(shell expr "$(GhcMinVersion)" \>= 6) -ifeq "$(ghc_406_at_least)" "1" +ghc_407_at_least = $(shell expr "$(GhcMinVersion)" \>= 7) +ifeq "$(ghc_407_at_least)" "1" SRC_HC_OPTS += -fglasgow-exts -cpp -package concurrent -package posix -package text else SRC_HC_OPTS += -fglasgow-exts -cpp -syslib concurrent -syslib posix -syslib misc |