summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-09-20 23:29:45 +0000
committerIan Lynagh <igloo@earth.li>2008-09-20 23:29:45 +0000
commit111cd8e022e516e6ba6200687150dc02171b8b75 (patch)
tree47e57f3544b8516756738fd49432a36fb59fb805 /Makefile
parentc43cb4926f213a5cdaf42c790456313f696228bb (diff)
downloadhaskell-111cd8e022e516e6ba6200687150dc02171b8b75.tar.gz
Escape a hash in the Makefile (it was breaking source dist creation)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ac55576a7d..61b139f140 100644
--- a/Makefile
+++ b/Makefile
@@ -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