[Zope-CVS] CVS: Packages/WinBuilders/mk - common.mk:1.3.2.3
Tim Peters
tim.one at comcast.net
Mon Feb 2 20:01:04 EST 2004
Update of /cvs-repository/Packages/WinBuilders/mk
In directory cvs.zope.org:/tmp/cvs-serv3205/mk
Modified Files:
Tag: tim-zrs-branch
common.mk
Log Message:
Introduce CYGROOT to hold the root of the Windows drive in use, as viewed
by Cygwin. It's not necessarily C:, and I guess most people fiddle with
mount to avoid typing /cygdrive a lot too.
=== Packages/WinBuilders/mk/common.mk 1.3.2.2 => 1.3.2.3 ===
--- Packages/WinBuilders/mk/common.mk:1.3.2.2 Sun Feb 1 00:33:49 2004
+++ Packages/WinBuilders/mk/common.mk Mon Feb 2 20:01:03 2004
@@ -8,6 +8,10 @@
WIN_TMP_DIR=$(shell cygpath -w $(TMP_DIR))
WIN_MAKEFILEDIR=$(shell cygpath -w $(MAKEFILEDIR))
+# Root of the Windows drive you're working on. The setting here is for
+# the C: drive and using a default out-of-the-box Cygwin.
+CYGROOT=/cygdrive/c
+
RM=rm -f
RMRF=rm -rf
CD=cd
@@ -26,7 +30,7 @@
NMAKE=nmake
CSCRIPT=cscript
ECHO=echo
-ISS_DIR=/cygdrive/c/Progra~1/Inno Setup 4
+ISS_DIR=$(CYGROOT)/Progra~1/Inno Setup 4
ISS_COMPILER=$(ISS_DIR)/Compil32.exe
$(REQUIRED_FILES):
More information about the Zope-CVS
mailing list