summaryrefslogtreecommitdiff
path: root/rules/bindist.mk
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-09-20 18:36:31 +0000
committerIan Lynagh <igloo@earth.li>2009-09-20 18:36:31 +0000
commitb02c901169b35f21ba1f037a4bef8e4ce89abc15 (patch)
tree58dc662f0290ae32ea1f4272c6136432e6c0f80d /rules/bindist.mk
parent8b1fc32b4d19789895a2a9bd462199d39858508a (diff)
downloadhaskell-b02c901169b35f21ba1f037a4bef8e4ce89abc15.tar.gz
Fix bindist creation
Diffstat (limited to 'rules/bindist.mk')
-rw-r--r--rules/bindist.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/bindist.mk b/rules/bindist.mk
index 56192a595d..f2bfd8fdd2 100644
--- a/rules/bindist.mk
+++ b/rules/bindist.mk
@@ -31,6 +31,6 @@ define bindist_item
# $1 = the line
# The formatting of this definition (e.g. the blank line above) is
# important, in order to get make to generate the right makefile code.
- for f in $(BIN_DIST_NAME)/$1; do echo $$$$f >> $(BIN_DIST_LIST); done
+ for f in $1; do echo $(BIN_DIST_NAME)/$$$$f >> $(BIN_DIST_LIST); done
endef