summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-10-10 18:55:31 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-10-10 18:55:31 (GMT)
commit15a8e6313089c75a6669fcfccd1bc9755afe5893 (patch)
treeedc5475958aaf5f6a153aece5c710b320ddd43a4 /win/Makefile.in
parentc693ced2182e43e881ebd26e0cfe533caa28861c (diff)
downloadtk-15a8e6313089c75a6669fcfccd1bc9755afe5893.zip
tk-15a8e6313089c75a6669fcfccd1bc9755afe5893.tar.gz
tk-15a8e6313089c75a6669fcfccd1bc9755afe5893.tar.bz2
* unix/Makefile.in: Relax constraints in index script so that
* win/Makefile.in: each Tk 8.5.* release may be [package require]d * win/makefile.vc: into any Tcl 8.5.* interp. [Bug 1890438].
Diffstat (limited to 'win/Makefile.in')
-rw-r--r--win/Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 42c1312..0d5e572 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.78 2008/03/18 06:59:04 jenglish Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.78.2.1 2008/10/10 18:55:31 dgp Exp $
TCLVERSION = @TCL_VERSION@
TCLPATCHL = @TCL_PATCH_LEVEL@
@@ -479,8 +479,7 @@ install-binaries: binaries
@echo "Creating package index $(PKG_INDEX)";
@$(RM) $(PKG_INDEX);
@(\
- echo "if {[catch {package present Tcl\
- $(TCLVERSION)$(TCLPATCHL)}]} { return }";\
+ echo "if {[catch {package present Tcl 8.5.0-8.6}]} { return }";\
echo "package ifneeded Tk $(VERSION)$(PATCH_LEVEL)\
[list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\
) > $(PKG_INDEX);