summaryrefslogtreecommitdiff
path: root/support/make/cygwin.mk
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-08-18 16:50:08 +0000
committerpaltherr <paltherr@epfl.ch>2003-08-18 16:50:08 +0000
commitb7dd9ed9a234211df2eb592ce96b1f7de9d88165 (patch)
tree6e2f614ceafea205a1e97725444e042bea7df76a /support/make/cygwin.mk
parent87210b8f1092065be1b7cfaf13a3852fe861abe4 (diff)
downloadscala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.tar.gz
scala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.tar.bz2
scala-b7dd9ed9a234211df2eb592ce96b1f7de9d88165.zip
- made some makefile scripts a bit more robust ...
- made some makefile scripts a bit more robust to filenames containing - $s reenabled generation of scala documentation
Diffstat (limited to 'support/make/cygwin.mk')
-rw-r--r--support/make/cygwin.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/make/cygwin.mk b/support/make/cygwin.mk
index 5b13f6b14b..2fc301ea09 100644
--- a/support/make/cygwin.mk
+++ b/support/make/cygwin.mk
@@ -26,7 +26,7 @@ CYGWIN_TEST = $(filter CYGWIN%,$(shell $(UNAME)))
##############################################################################
# Functions
-CYGWIN_PATH = $(if $(CYGWIN_TEST),`$(CYGPATH) -w -p '$(1)'`,$(1))
-CYGWIN_FILE = $(if $(CYGWIN_TEST),`$(CYGPATH) -w '$(1)'`,$(1))
+CYGWIN_PATH = $(if $(CYGWIN_TEST),`$(CYGPATH) -w -p $(1)`,$(1))
+CYGWIN_FILE = $(if $(CYGWIN_TEST),`$(CYGPATH) -w $(1)`,$(1))
##############################################################################