summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-02-08 12:07:12 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-02-08 12:07:12 +0000
commiteb3de385e95923c0c391d7a19a1e8da7a2865c4a (patch)
treebb220529095f759cc22daf4a33dbae3cd7aba946 /Makefile
parenta6b59f26bc90f06c8e1969b6f35f8dae2a99ce28 (diff)
downloadhaskell-eb3de385e95923c0c391d7a19a1e8da7a2865c4a.tar.gz
fix cut-and-pasto in code for binary-dist upload
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b03289b105..c81dc39847 100644
--- a/Makefile
+++ b/Makefile
@@ -388,8 +388,8 @@ binary-dist ::
ifneq "$(PublishLocation)" ""
binary-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) $(BIN_DIST_TARBALL) $(PublishLocation)"; \
+ if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi\
done
endif