diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-11 10:28:39 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-01-11 10:28:39 (GMT) |
commit | f901cc0840bf9daab74b905fa7b5756b7b05350c (patch) | |
tree | cd6ac56b171e4f8d190e9011e0cf7013dbf5a0c0 | |
parent | 8522e4bf4dfc4ba8bf2475673265f9f75bf1de69 (diff) | |
download | tk-f901cc0840bf9daab74b905fa7b5756b7b05350c.zip tk-f901cc0840bf9daab74b905fa7b5756b7b05350c.tar.gz tk-f901cc0840bf9daab74b905fa7b5756b7b05350c.tar.bz2 |
wrong end brace location
-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 "}";\ |