fix syntax errors in src-dist publish rules
authorSimon Marlow <marlowsd@gmail.com>
Wed, 8 Oct 2008 10:34:32 +0000 (10:34 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Wed, 8 Oct 2008 10:34:32 +0000 (10:34 +0000)
Makefile

index e71fe18..57a0d5c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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