summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--unix/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a0f72e2..3c9bd03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-25 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * unix/Makefile.in (install-libraries): protect possible empty
+ list in for with list= trick for older shells.
+
2005-05-23 Jeff Hobbs <jeffh@ActiveState.com>
* generic/tkFileFilter.c (FreeGlobPatterns): s/null/NULL/
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 4d8c9fb..e684690 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.104 2005/05/24 00:32:55 das Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.105 2005/05/25 20:32:33 hobbs Exp $
# Current Tk version; used in various names.
@@ -681,7 +681,7 @@ install-libraries: libraries
do \
$(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR); \
done;
- @for i in $(@TK_WINDOWINGSYSTEM@_XLIB_HDRS) ; \
+ @list='$(@TK_WINDOWINGSYSTEM@_XLIB_HDRS)'; for i in $$list ; \
do \
$(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR)/X11; \
done;