diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-07-27 09:09:46 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-07-27 09:09:46 +0000 |
commit | 8022ffa5981a27c53cb907a8bfc84032d2c13342 (patch) | |
tree | b5f74391a68c9be8763cebd64fb3488d67dbf267 /rules | |
parent | fc14af2094379104a330f3d47e72ef26bb0348b0 (diff) | |
download | haskell-8022ffa5981a27c53cb907a8bfc84032d2c13342.tar.gz |
Slight tweak to avoid overflowing the command-line size in bindist
Not a real fix: if this bites us again we'll have to rethink
Diffstat (limited to 'rules')
-rw-r--r-- | rules/bindist.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/bindist.mk b/rules/bindist.mk index 13ded8bbff..d1b0403806 100644 --- a/rules/bindist.mk +++ b/rules/bindist.mk @@ -23,6 +23,6 @@ define bindist bindist: bindist_$1 bindist_$1: - for f in $$(addprefix $1/,$2); do echo $(BIN_DIST_NAME)/$$$$f >> $(BIN_DIST_LIST); done + for f in $2; do echo $1/$(BIN_DIST_NAME)/$$$$f >> $(BIN_DIST_LIST); done endef |