diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-05-05 07:42:58 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-05-05 07:42:58 (GMT) |
commit | 2e593c0a4e991fbecea3a60871901357adb47fb6 (patch) | |
tree | bcece189023626af77235d777263ed92806db6a5 | |
parent | c2492d41c1c77e3d9bbe03e33fa20b7e60092e1f (diff) | |
download | tk-2e593c0a4e991fbecea3a60871901357adb47fb6.zip tk-2e593c0a4e991fbecea3a60871901357adb47fb6.tar.gz tk-2e593c0a4e991fbecea3a60871901357adb47fb6.tar.bz2 |
Make the tktest build work when Tcl is located in a path with a space in
-rw-r--r-- | win/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index f738911..5216ca6 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.71 2006/12/13 20:38:29 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.72 2007/05/05 07:42:58 dkf Exp $ TCLVERSION = @TCL_VERSION@ TCLPATCHL = @TCL_PATCH_LEVEL@ @@ -612,7 +612,7 @@ $(TKTEST): $(TK_LIB_FILE) $(TKTEST_OBJS) wish.$(RES) $(CAT32) $(TCL_SRC_DIR)/win/cat.c: cat32.${OBJEXT}: $(TCL_SRC_DIR)/win/cat.c - $(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME) + $(CC) -c $(CC_SWITCHES) "$(TCL_SRC_DIR)/win/cat.c" $(CC_OBJNAME) $(CAT32): cat32.${OBJEXT} $(CC) $(CFLAGS) cat32.$(OBJEXT) $(CC_EXENAME) $(LIBS) $(LDFLAGS_CONSOLE) |