diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-12-02 18:40:06 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-12-02 18:40:06 (GMT) |
commit | daaaa7768cb634eed14f66460b8fdf6d85d719c1 (patch) | |
tree | 80395f8384fd98a09263ccfac9fb4e17a2d72c27 /win/Makefile.in | |
parent | 512b5b9ab9098ac6858e682aaa02a7172f1da0aa (diff) | |
download | tcl-daaaa7768cb634eed14f66460b8fdf6d85d719c1.zip tcl-daaaa7768cb634eed14f66460b8fdf6d85d719c1.tar.gz tcl-daaaa7768cb634eed14f66460b8fdf6d85d719c1.tar.bz2 |
workaround for a bug in cygpath that made safe-8.5-8.7 fail
Diffstat (limited to 'win/Makefile.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 0820aba..dbc6894 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.84 2004/11/29 22:41:58 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.85 2004/12/02 18:40:17 kennykb Exp $ VERSION = @TCL_VERSION@ @@ -110,7 +110,7 @@ CYGPATH = @CYGPATH@ GENERIC_DIR_NATIVE = $(shell $(CYGPATH) '$(GENERIC_DIR)') WIN_DIR_NATIVE = $(shell $(CYGPATH) '$(WIN_DIR)') -ROOT_DIR_NATIVE = $(shell $(CYGPATH) '$(ROOT_DIR)') +ROOT_DIR_NATIVE = $(shell $(CYGPATH) '$(ROOT_DIR)' | sed 's/\\*$$//' ) LIBRARY_DIR = $(shell echo '$(ROOT_DIR_NATIVE)/library' | sed 's/\\/\//g' ) |