diff options
author | andreas_kupries <akupries@shaw.ca> | 2002-06-27 20:09:55 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2002-06-27 20:09:55 (GMT) |
commit | c5c4d6b20bbb557ad2e1a30c2a33f27458308b9a (patch) | |
tree | 7be3f4d7b34f3a16adcf75fb68e056765856ca2c | |
parent | 5c3e66b300c55520a28cff51ef98c85790bc1da5 (diff) | |
download | tk-c5c4d6b20bbb557ad2e1a30c2a33f27458308b9a.zip tk-c5c4d6b20bbb557ad2e1a30c2a33f27458308b9a.tar.gz tk-c5c4d6b20bbb557ad2e1a30c2a33f27458308b9a.tar.bz2 |
* win/Makefile.in (install-binaries): Fix of troubled Makefile
quoting introduced by [Patch 521356] causing the installed to
fail.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | win/Makefile.in | 14 |
2 files changed, 13 insertions, 7 deletions
@@ -1,3 +1,9 @@ +2002-06-27 Andreas Kupries <andreas_kupries@users.sourceforge.net> + + * win/Makefile.in (install-binaries): Fix of troubled Makefile + quoting introduced by [Patch 521356] causing the installed to + fail. + 2002-06-25 Don Porter <dgp@users.sf.net> * unix/tkUnixFont.c: (Tk_DrawChars) silence compiler warning. diff --git a/win/Makefile.in b/win/Makefile.in index 836cb52..4bf6d19 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.53 2002/06/26 02:38:26 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.54 2002/06/27 20:09:55 andreas_kupries Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -443,12 +443,12 @@ install-binaries: binaries done @echo "Creating package index $(PKG_INDEX)"; @$(RM) $(PKG_INDEX); - @echo "if {[package vcompare \\" > $(PKG_INDEX); \ - @echo " [package provide Tcl] \\" >> $(PKG_INDEX); \ - @echo " $(TCLVERSION)] != 0} {return}" >> $(PKG_INDEX); \ - @echo "package ifneeded Tk $(VERSION) \\" >> $(PKG_INDEX); \ - @echo " [list load [file join \$$dir .. \\" >> $(PKG_INDEX); \ - @echo " $(TK_DLL_FILE)] Tk]" >> $(PKG_INDEX); \ + @echo "if {[package vcompare \\" > $(PKG_INDEX); + @echo " [package provide Tcl] \\" >> $(PKG_INDEX); + @echo " $(TCLVERSION)] != 0} {return}" >> $(PKG_INDEX); + @echo "package ifneeded Tk $(VERSION) \\" >> $(PKG_INDEX); + @echo " [list load [file join \$$dir .. \\" >> $(PKG_INDEX); + @echo " $(TK_DLL_FILE)] Tk]" >> $(PKG_INDEX); @for i in tkConfig.sh $(TK_LIB_FILE) $(TK_STUB_LIB_FILE); \ do \ if [ -f $$i ]; then \ |