[commit: ghc] master: Fix doc uploading in the nightly builds (cb269f5)
Ian Lynagh
igloo at earth.li
Thu Jun 7 18:34:56 CEST 2012
Repository : ssh://darcs.haskell.org//srv/darcs/ghc
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/cb269f5818ea8f019eaad2130db60797c781c030
>---------------------------------------------------------------
commit cb269f5818ea8f019eaad2130db60797c781c030
Author: Ian Lynagh <igloo at earth.li>
Date: Thu Jun 7 11:41:59 2012 +0100
Fix doc uploading in the nightly builds
The bindist install directory was wrong.
>---------------------------------------------------------------
ghc.mk | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ghc.mk b/ghc.mk
index 41371d0..ff5661f 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -1029,9 +1029,9 @@ ifeq "$(mingw32_TARGET_OS)" "1"
endif
ifeq "$(mingw32_TARGET_OS)" "1"
-DOCDIR_TO_PUBLISH = bindisttest/"install dir"/doc
+DOCDIR_TO_PUBLISH = $(BIN_DIST_INST_DIR)/doc
else
-DOCDIR_TO_PUBLISH = bindisttest/"install dir"/share/doc/ghc
+DOCDIR_TO_PUBLISH = $(BIN_DIST_INST_DIR)/share/doc/ghc
endif
.PHONY: publish-docs
More information about the Cvs-ghc
mailing list