From eb3de385e95923c0c391d7a19a1e8da7a2865c4a Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 8 Feb 2007 12:07:12 +0000 Subject: [PATCH] fix cut-and-pasto in code for binary-dist upload --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b03289b..c81dc39 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 -- 1.7.10.4