diff options
author | sven.panne@aedion.de <unknown> | 2007-09-08 12:46:45 +0000 |
---|---|---|
committer | sven.panne@aedion.de <unknown> | 2007-09-08 12:46:45 +0000 |
commit | 62bad18960643f862bba8f14c31cce15b287fb81 (patch) | |
tree | 17df5640e7e522f9282f306b98d0ee7ba3a9b90b /mk | |
parent | 9905c28c7fa0e1893ad00a6fd8221e9676bbdd7c (diff) | |
download | haskell-62bad18960643f862bba8f14c31cce15b287fb81.tar.gz |
Use := for PACKAGE_TARNAME, no reason for not doing so
MERGE TO STABLE
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index ba0fcc8e63..e0b9d3cec9 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -501,9 +501,6 @@ endif # On Windows this is a c:/foo/bar style path. FPTOOLS_TOP_ABS = @hardtop@ -# This gets used in the default docdir -PACKAGE_TARNAME = @PACKAGE_TARNAME@ - BIN_DIST_NAME=ghc-$(ProjectVersion) BIN_DIST_TOPDIR_REL=$(FPTOOLS_TOP) BIN_DIST_TOPDIR_ABS=$(FPTOOLS_TOP_ABS) @@ -539,6 +536,9 @@ BIN_DIST_INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/installed # string "${docdir}", not the value of docdir! This is crucial for the GNU # coding standards. +# This gets used in the default docdir when autoconf >= 2.60 is used +PACKAGE_TARNAME := @PACKAGE_TARNAME@ + prefix := @prefix@ # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag. |