diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-18 13:36:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-18 13:36:36 +0000 |
commit | 51d7126ec1ac139e583af6375cde09acb8ddfed4 (patch) | |
tree | f9eefb33c242a19a60a51d30f57bf1ef0a25d3ce /ghc | |
parent | 36cc8411d5d13cf52b478ca92213190a84d6561f (diff) | |
download | haskell-51d7126ec1ac139e583af6375cde09acb8ddfed4.tar.gz |
Generate ghc.cabal and ghc-bin.cabal with configure
This allows us to put the proper version number into them
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/Makefile | 6 | ||||
-rw-r--r-- | ghc/ghc-bin.cabal.in (renamed from ghc/ghc-bin.cabal) | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ghc/Makefile b/ghc/Makefile index 048b3a59b7..c0664df5fd 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -34,12 +34,18 @@ stage2 :: stage3 :: $(MAKE) stage=3 + ifeq "$(CLEAN_ALL_STAGES)" "YES" clean distclean:: clean.stage.1 clean.stage.2 clean.stage.3 else clean distclean:: clean.stage.$(stage) endif +ifeq "$(CLEAN_ALL_STAGES)" "YES" +distclean:: + $(RM) -f ghc-bin.cabal +endif + clean.stage.%: -$(CABAL) clean --distpref dist-stage$* $(RM) -rf stage$*-inplace diff --git a/ghc/ghc-bin.cabal b/ghc/ghc-bin.cabal.in index ede227bd5f..4e6d0081b1 100644 --- a/ghc/ghc-bin.cabal +++ b/ghc/ghc-bin.cabal.in @@ -1,6 +1,5 @@ Name: ghc-bin --- XXX Version number! -Version: 6.9 +Version: @ProjectVersion@ Copyright: XXX -- License: XXX -- License-File: XXX |