summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-08 08:08:28 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-08 08:08:28 (GMT)
commit5e04de18570772af42f7d32958d178bf85737430 (patch)
tree18a291062ec6b43d575b46fd5630646ae9065d4a
parentf6f2a3b144eb75edbc33ea0c15c40bc40e0158bd (diff)
downloadtcl-5e04de18570772af42f7d32958d178bf85737430.zip
tcl-5e04de18570772af42f7d32958d178bf85737430.tar.gz
tcl-5e04de18570772af42f7d32958d178bf85737430.tar.bz2
mSys doesn't have $PWD. Reported by Rene Zaumseil on Tcl Core list
-rw-r--r--win/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 39d34dd..9c57083 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -751,7 +751,7 @@ packages:
if [ ! -f $(PKG_DIR)/$$pkg/Makefile ]; then \
( cd $(PKG_DIR)/$$pkg; \
echo "Configuring package '$$i' wd = `pwd -P`"; \
- $$i/configure --with-tcl=$(PWD) --with-tclinclude=$(GENERIC_DIR) $(PKG_CFG_ARGS) --enable-shared --enable-threads; ) \
+ $$i/configure --with-tcl=$(builddir) --with-tclinclude=$(GENERIC_DIR) $(PKG_CFG_ARGS) --enable-shared --enable-threads; ) \
fi ; \
echo "Building package '$$pkg'"; \
( cd $(PKG_DIR)/$$pkg; $(MAKE); ) \