Add dist/ to $(PublishLocation)
authorSimon Marlow <simonmar@microsoft.com>
Fri, 18 May 2007 08:58:11 +0000 (08:58 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Fri, 18 May 2007 08:58:11 +0000 (08:58 +0000)
The docs were going in the wrong place before:
..../dist/docs instead of ..../docs

Makefile

index f143535..c27d5ac 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -396,8 +396,8 @@ endif
 .PHONY: publish-binary-dist
 publish-binary-dist :
        @for i in 0 1 2 3 4 5 6 7 8 9; do \
-               echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)"; \
-               if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi; \
+               echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)/dist"; \
+               if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)/dist; then break; fi; \
        done
        $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs