diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:20:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:20:39 (GMT) |
commit | 36eb1fcc42c8ad41e070467e6e935eff105b73ab (patch) | |
tree | 2c6c0f75e05577014a9bd494397165f9dab61633 /win | |
parent | 6ff6b35b69e226ae44fae4bf767c4f35e1a80bdd (diff) | |
parent | fd30222557d14ec07608457f8dbd41a6b2e2b0d8 (diff) | |
download | tk-36eb1fcc42c8ad41e070467e6e935eff105b73ab.zip tk-36eb1fcc42c8ad41e070467e6e935eff105b73ab.tar.gz tk-36eb1fcc42c8ad41e070467e6e935eff105b73ab.tar.bz2 |
[Bug 3532186]: pkgIndex.tcl file complexity that's unwarranted: Test for ::argv variable before trying to use it
Diffstat (limited to 'win')
-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 807be9c..9ffa737 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -479,8 +479,8 @@ install-binaries: binaries @$(RM) $(PKG_INDEX); @(\ echo "if {[catch {package present Tcl $(TCLVERSION)$(TCLPATCHL)}]} 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)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin libtk$(VERSION).dll] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(VERSION)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\ |