diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-11 10:28:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-11 10:28:39 (GMT) |
commit | cc3054648b226f5a00a89e60df98ec33cd0c3bb4 (patch) | |
tree | cd6ac56b171e4f8d190e9011e0cf7013dbf5a0c0 /unix | |
parent | 0e5b62601e1b369ad78f4eee43d473e74702cbd6 (diff) | |
download | tk-cc3054648b226f5a00a89e60df98ec33cd0c3bb4.zip tk-cc3054648b226f5a00a89e60df98ec33cd0c3bb4.tar.gz tk-cc3054648b226f5a00a89e60df98ec33cd0c3bb4.tar.bz2 |
wrong end brace location
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 3748571..1c5c42a 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -667,7 +667,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) ${WISH else \ echo "if {(\$$::tcl_platform(platform) eq \"unix\") && ([info exists ::env(DISPLAY)]";\ echo " || ([info exists ::argv] && [lsearch -exact \$$::argv -display] > -1))} {";\ - echo " package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION) [list load [file normalize [file join \$$dir $${relative}.. bin $(TK_LIB_FILE)] Tk]]";\ + echo " package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION) [list load [file normalize [file join \$$dir $${relative}.. bin $(TK_LIB_FILE)]] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION) [list load [file normalize [file join \$$dir $${relative}.. bin tk${MAJOR_VERSION}${MINOR_VERSION}.dll]] Tk]";\ echo "}";\ |