aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsof <unknown>2003-05-30 16:50:45 +0000
committersof <unknown>2003-05-30 16:50:45 +0000
commitbcee1e75734a4b8a9311941b9a62838921ef1e92 (patch)
tree334b3966dad8f1a1f08be4248f0dc8ee8129bdb4
parentef8c45f7b3568d66d748a3249c486022bdb1a2a2 (diff)
[haddock @ 2003-05-30 16:50:45 by sof]
cygpath: for now, steer clear of --mixed
-rw-r--r--src/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 68e83905..f4766d43 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -18,7 +18,9 @@ HADDOCKLIB=$$\"\"libdir/haddock
HADDOCKBIN=$$\"\"libexecdir/$(HS_PROG)
else
ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
-HADDOCKLIB=$(shell cygpath --mixed $(libdir))
+# --mixed is only provided by newer versions of cygpath (1.2 doesn't have it, for instance.)
+#HADDOCKLIB=$(shell cygpath --mixed $(libdir))
+HADDOCKLIB=$(shell cygpath -w $(libdir) | sed -e 's%\\%/%g')
else
HADDOCKLIB=$(libdir)
endif # mingw
@@ -26,13 +28,17 @@ HADDOCKBIN=$(libexecdir)/$(HS_PROG)
endif # BIN_DIST
else
ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
-HADDOCKLIB=$(shell cygpath --mixed $(FPTOOLS_TOP_ABS)/haddock/html)
+# See above comment re: --mixed
+#HADDOCKLIB=$(shell cygpath --mixed $(FPTOOLS_TOP_ABS)/haddock/html)
+HADDOCKLIB=$(shell cygpath -w $(FPTOOLS_TOP_ABS)/haddock/html | sed -e 's%\\%/%g')
else
HADDOCKLIB=$(FPTOOLS_TOP_ABS)/haddock/html
endif
HADDOCKBIN=$(FPTOOLS_TOP_ABS)/haddock/src/$(HS_PROG)
endif # INSTALLING
+HADDOCKLIB=$(shell cygpath -w $(libdir) | sed -e 's%\\%/%g')
+
HAPPY_OPTS += $(GHC_HAPPY_OPTS)
INSTALLED_SCRIPT_PROG = haddock-$(ProjectVersion)