diff options
author | mdejong <mdejong> | 2001-06-27 01:06:12 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-06-27 01:06:12 (GMT) |
commit | effafed363f9f283c32c0006ee0d244e84a57797 (patch) | |
tree | d46a94578d57e15fc36e4fb1e0dfed24e61592c9 /win/Makefile.in | |
parent | 6066205f3d02f902d53fd00d55d8bef7c06ebee8 (diff) | |
download | tcl-effafed363f9f283c32c0006ee0d244e84a57797.zip tcl-effafed363f9f283c32c0006ee0d244e84a57797.tar.gz tcl-effafed363f9f283c32c0006ee0d244e84a57797.tar.bz2 |
* win/Makefile.in: Use : to separate VPATH entries. This
works for both Cygwin builds and cross builds, the VPSEP
variable is simply unneeded complexity.
* win/configure: Regen.
* win/configure.in: Don't subst VPSEP.
* win/tcl.m4 (SC_CONFIG_CFLAGS): Remove VPSEP variable.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index db61aae..0354bcb 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.45 2001/06/22 23:02:53 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.46 2001/06/27 01:06:12 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -146,10 +146,9 @@ DEPARG = "$(shell $(CYGPATH) $(PATHTYPE) $<)" # Setting the VPATH variable to a list of paths will cause the # makefile to look into these paths when resolving .c to .obj -# dependencies. Note the ':' to avoid autoconf's habit of deleting -# all VPATH lines without an explicit ':' in it. +# dependencies. -VPATH = $(GENERIC_DIR)@VPSEP@$(WIN_DIR)@VPSEP@$(COMPAT_DIR) # : +VPATH = $(GENERIC_DIR):$(WIN_DIR):$(COMPAT_DIR) AR = @AR@ RANLIB = @RANLIB@ |