Fix bindist creation
authorIan Lynagh <igloo@earth.li>
Sun, 20 Sep 2009 18:36:31 +0000 (18:36 +0000)
committerIan Lynagh <igloo@earth.li>
Sun, 20 Sep 2009 18:36:31 +0000 (18:36 +0000)
rules/bindist.mk

index 56192a5..f2bfd8f 100644 (file)
@@ -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