diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-04-24 09:01:59 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-04-24 09:01:59 +0000 |
commit | 1f574dc41f5d11aec48a6ee24c0a28ee60267f95 (patch) | |
tree | a210fccc6dff52a695d59652769f9677b1803c50 /Makefile | |
parent | e26880ac914b198bca11a699b77ffa52790615fe (diff) | |
download | haskell-1f574dc41f5d11aec48a6ee24c0a28ee60267f95.tar.gz |
fix problem with binary-dist docs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -235,7 +235,6 @@ ifeq "$(BIN_DIST)" "" endif -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) -$(RM) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz - -echo "BIN_DIST_DIRS = $(BIN_DIST_DIRS)" @for i in $(BinDistDirs); do \ if test -d "$$i"; then \ echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \ @@ -310,7 +309,7 @@ endif # BINDIST_DOC_WAYS binary-dist :: ifneq "$(DIR_DOCBOOK_XSL)" "" - @for i in $(BIN_DIST_DIRS); do \ + @for i in $(BinDistDirs); do \ if test -d "$$i"; then \ $(MAKE) -C $$i $(MFLAGS) $(BINDIST_DOC_WAYS); \ echo $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \ |