diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:17:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:17:10 (GMT) |
commit | d0a3f3b5288cf9564bade2efdf74599e1ac24a1b (patch) | |
tree | c5214231958cae6ab31dd502871ced8638ce80ea /win/Makefile.in | |
parent | ae8760d2c2d951d18039a14e617220ad642b4764 (diff) | |
download | tk-d0a3f3b5288cf9564bade2efdf74599e1ac24a1b.zip tk-d0a3f3b5288cf9564bade2efdf74599e1ac24a1b.tar.gz tk-d0a3f3b5288cf9564bade2efdf74599e1ac24a1b.tar.bz2 |
[Bug 3532186]: pkgIndex.tcl file complexity that's unwarranted: Test for ::argv variable before trying to use it
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 871f0af..19670c7 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -435,8 +435,8 @@ install-binaries: binaries @$(RM) $(PKG_INDEX); @(\ echo "if {[package vcompare [package provide Tcl] $(TCLVERSION)] != 0} { return }";\ - echo "if {(\$$::tcl_platform(platform) eq \"unix\")";\ - echo " && ([info exists ::env(DISPLAY)] || [lsearch -exact \$$::argv -display] > -1)} {";\ + echo "if {(\$$::tcl_platform(platform) eq \"unix\") && ([info exists ::env(DISPLAY)]";\ + echo " || ([info exists ::argv] && [lsearch -exact \$$::argv -display] > -1))} {";\ echo " package ifneeded Tk $(VERSION) [list load [file join \$$dir .. .. bin libtk$(VERSION).dll] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(VERSION) [list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\ |