diff options
author | hobbs <hobbs> | 2005-05-25 20:32:30 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-05-25 20:32:30 (GMT) |
commit | b3d70c9260bd91313100bdb557224afc98f06875 (patch) | |
tree | d02b30ed6b8eebc98a5540a81ba5a117eb878f71 /unix/Makefile.in | |
parent | 1c7a49eaf761581939a9ca94f69f0ff60ebd0e74 (diff) | |
download | tk-b3d70c9260bd91313100bdb557224afc98f06875.zip tk-b3d70c9260bd91313100bdb557224afc98f06875.tar.gz tk-b3d70c9260bd91313100bdb557224afc98f06875.tar.bz2 |
* unix/Makefile.in (install-libraries): protect possible empty
list in for with list= trick for older shells.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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; |