diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-20 23:29:45 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-20 23:29:45 +0000 |
commit | 111cd8e022e516e6ba6200687150dc02171b8b75 (patch) | |
tree | 47e57f3544b8516756738fd49432a36fb59fb805 /Makefile | |
parent | c43cb4926f213a5cdaf42c790456313f696228bb (diff) | |
download | haskell-111cd8e022e516e6ba6200687150dc02171b8b75.tar.gz |
Escape a hash in the Makefile (it was breaking source dist creation)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -513,7 +513,7 @@ SRC_DIST_FILES += \ # - remove a bunch of other files that we know shouldn't be in the dist # - tar up first the extralibs package, then the main source package -EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/%, $(shell grep -E "extralibs|dph" packages | grep -v "^#" | sed "s/ .*//")) +EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/%, $(shell grep -E "extralibs|dph" packages | grep -v "^\#" | sed "s/ .*//")) SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2 |