From: Ian Lynagh Date: Sun, 20 Sep 2009 18:36:31 +0000 (+0000) Subject: Fix bindist creation X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=b02c901169b35f21ba1f037a4bef8e4ce89abc15 Fix bindist creation --- diff --git a/rules/bindist.mk b/rules/bindist.mk index 56192a5..f2bfd8f 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