diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-05-31 13:41:13 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-05-31 13:41:13 +0000 |
commit | 051f5e48f6709244dbf73306519666b060dec42d (patch) | |
tree | ab02e6626700844649d3dcadf7c0afd0f61e1690 /Makefile | |
parent | db91b1f9037f6c5fc02347e386e403946b9bbb0a (diff) | |
download | haskell-051f5e48f6709244dbf73306519666b060dec42d.tar.gz |
fix locations for uploading src dists
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -517,12 +517,12 @@ dist :: 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)"; \ - if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\ + echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \ + 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)"; \ - if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation); then break; fi\ + echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \ + if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi\ done endif |