summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-08-16 07:52:23 (GMT)
committerhobbs <hobbs>2002-08-16 07:52:23 (GMT)
commit28cc067ae10647bdc4b76d43be30a1c460ae828b (patch)
treea6c071fae92c36cd6e4a03cd655f65d5b0f7e2df /unix/Makefile.in
parent2ef516f29db94e05730be54dcbb6ce0346e9b08d (diff)
downloadtk-28cc067ae10647bdc4b76d43be30a1c460ae828b.zip
tk-28cc067ae10647bdc4b76d43be30a1c460ae828b.tar.gz
tk-28cc067ae10647bdc4b76d43be30a1c460ae828b.tar.bz2
* unix/Makefile.in (install-binaries): simplified pkgIndex.tcl
file created on installation. * win/Makefile.in (install-binaries): corrected and simplified creation of pkgIndex.tcl file on installation.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index b12c91f..755ae67 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.79 2002/08/08 11:43:08 rmax Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.80 2002/08/16 07:52:23 hobbs Exp $
# Current Tk version; used in various names.
@@ -511,15 +511,15 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) wish
@if test ! -x $(UNIX_DIR)/install-sh; then \
chmod +x $(UNIX_DIR)/install-sh; \
fi
- @if test "$(TK_SHARED_BUILD)"; then \
+ @if test "x$(TK_SHARED_BUILD)" = "x1"; then \
echo "Creating package index $(PKG_INDEX)"; \
rm -f $(PKG_INDEX); \
- echo "if {[package vcompare \\" > $(PKG_INDEX); \
- echo " [package provide Tcl] \\" >> $(PKG_INDEX); \
- echo " $(TCLVERSION)] != 0} {return}" >> $(PKG_INDEX); \
- echo "package ifneeded Tk $(VERSION) \\" >> $(PKG_INDEX); \
- echo " [list load [file join \$$dir .. \\" >> $(PKG_INDEX); \
- echo " $(TK_LIB_FILE)] Tk]" >> $(PKG_INDEX); \
+ (\
+ echo "if {[package vcompare [package provide Tcl]\
+ $(TCLVERSION)] != 0} { return }";\
+ echo "package ifneeded Tk $(VERSION)\
+ [list load [file join \$$dir .. $(TK_LIB_FILE)] Tk]";\
+ ) > $(PKG_INDEX); \
fi
@echo "Installing $(LIB_FILE) to $(LIB_INSTALL_DIR)/"
@@INSTALL_LIB@