summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2001-10-15 22:15:02 (GMT)
committerhobbs <hobbs@noemail.net>2001-10-15 22:15:02 (GMT)
commit5b9908829f1d5e8e17797f79c7ee7b2caf4282bb (patch)
treeb4a16e06981e4f8a238e049e48e32af72d8dca2a /win
parente51515c1c7b31008aff96ae5dd50d5a09a2c071a (diff)
downloadtk-5b9908829f1d5e8e17797f79c7ee7b2caf4282bb.zip
tk-5b9908829f1d5e8e17797f79c7ee7b2caf4282bb.tar.gz
tk-5b9908829f1d5e8e17797f79c7ee7b2caf4282bb.tar.bz2
had to add ""s now that configure.in is doing the right thing
FossilOrigin-Name: d500878b28c295ba8642356cc26c5e6910d78f29
Diffstat (limited to 'win')
-rwxr-xr-xwin/configure2
-rw-r--r--win/configure.in4
2 files changed, 3 insertions, 3 deletions
diff --git a/win/configure b/win/configure
index cb4c242..b6cec74 100755
--- a/win/configure
+++ b/win/configure
@@ -1637,7 +1637,7 @@ CFG_TK_EXPORT_FILE_SUFFIX=${TK_EXPORT_FILE_SUFFIX}
# on symbols and static vs. shared.
#--------------------------------------------------------------------
-if test "$SHARED_BUILD" = 0 -o $TCL_NEEDS_EXP_FILE = 0; then
+if test "$SHARED_BUILD" = 0 -o "$TCL_NEEDS_EXP_FILE" = 0; then
if test "${DBGX}" = "d"; then
RC_DEFINES="${RC_DEFINE} STATIC_BUILD ${RC_DEFINE} DEBUG"
else
diff --git a/win/configure.in b/win/configure.in
index 74efc03..dd5b75c 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,7 +3,7 @@
# generate the file "configure", which is run during Tk installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.37 2001/10/15 21:19:16 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.38 2001/10/15 22:15:02 hobbs Exp $
AC_INIT(../generic/tk.h)
@@ -166,7 +166,7 @@ CFG_TK_EXPORT_FILE_SUFFIX=${TK_EXPORT_FILE_SUFFIX}
# on symbols and static vs. shared.
#--------------------------------------------------------------------
-if test "$SHARED_BUILD" = 0 -o $TCL_NEEDS_EXP_FILE = 0; then
+if test "$SHARED_BUILD" = 0 -o "$TCL_NEEDS_EXP_FILE" = 0; then
if test "${DBGX}" = "d"; then
RC_DEFINES="${RC_DEFINE} STATIC_BUILD ${RC_DEFINE} DEBUG"
else