diff options
author | Simon Marlow <marlowsd@gmail.com> | 2008-10-08 10:34:32 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2008-10-08 10:34:32 +0000 |
commit | d6f008560fc29058fcad9bcf59e0a2ff9e4fc780 (patch) | |
tree | 51b0b319390d4fca756acfd5ef3ea25543fb668f | |
parent | aac6f4e51b57094702ca21ea55c48c91019deed8 (diff) | |
download | haskell-d6f008560fc29058fcad9bcf59e0a2ff9e4fc780.tar.gz |
fix syntax errors in src-dist publish rules
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -573,11 +573,11 @@ ifneq "$(PublishLocation)" "" dist :: @for i in 0 1 2 3 4 5 6 7 8 9; do \ echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \ - if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi\ + if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi; \ done @for i in 0 1 2 3 4 5 6 7 8 9; do \ echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \ - if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi\ + if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi; \ done endif |