diff options
author | Ian Lynagh <igloo@earth.li> | 2007-05-30 10:56:29 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-05-30 10:56:29 +0000 |
commit | 589f20054b729780815000c20eb2c189e397dfdb (patch) | |
tree | b956ec061e9335d4c0fd60b37c26c51d7fa4dd64 /Makefile | |
parent | fd7f8e936e50b3ee589efc36ac2fc54cc6c05300 (diff) | |
download | haskell-589f20054b729780815000c20eb2c189e397dfdb.tar.gz |
Fix copy-and-paste-o
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -425,7 +425,7 @@ endif .PHONY: publish-binary-dist publish-binary-dist :: @for f in $(PUBLISH_FILES); do \ - @for i in 0 1 2 3 4 5 6 7 8 9; do \ + for i in 0 1 2 3 4 5 6 7 8 9; do \ echo "Try $$i: $(PublishCp) $$f $(PublishLocation)/dist"; \ if $(PublishCp) $$f $(PublishLocation)/dist; then break; fi; \ done \ |