]> sourceware.org Git - automake.git/commitdiff
* lib/install-sh: Initialize IFS, so field splitting isn't
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 11 May 2006 17:28:08 +0000 (17:28 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 11 May 2006 17:28:08 +0000 (17:28 +0000)
turned off later.
* lib/mkinstalldirs: Likewise.

ChangeLog
lib/install-sh
lib/mkinstalldirs

index e687a8b6a5a3c0065f0b2fe00ecee832f856c975..c828a4ea815e5a7ec2c583a73a38a62a3bd70e00 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * lib/install-sh: Initialize IFS, so field splitting isn't
+       turned off later.
+       * lib/mkinstalldirs: Likewise.
+
        * lib/am/java.am (class%DIR%.stamp): Do not assume `$?' has
        the path of the prerequisite added; IRIX 6.5 make does not add
        it, Solaris 2.6 make is inconsistent about adding it.  Fixes
index 220d6647ef262e41f73c56da9257134345ea1758..64c408f51643fbc3974773148985c60e527d51ff 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 # install - install a program, script, or datafile
 
-scriptversion=2006-04-25.22
+scriptversion=2006-05-11.19
 
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
 # later released in X11R6 (xc/config/util/install.sh) with the
@@ -42,6 +42,10 @@ scriptversion=2006-04-25.22
 # from scratch.  It can only install one file at a time, a restriction
 # shared with many OS's install programs.
 
+nl='
+'
+IFS=" ""       $nl"
+
 # set DOITPROG to echo to test this script
 
 # Don't use :- since 4.3BSD and earlier shells don't like it.
index 259dbfcd35789bd0f087803d193cfd924f9a5f34..ef7e16fdafe243ab5e368763bd4cda18c5872c1f 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 # mkinstalldirs --- make directory hierarchy
 
-scriptversion=2005-06-29.22
+scriptversion=2006-05-11.19
 
 # Original author: Noah Friedman <friedman@prep.ai.mit.edu>
 # Created: 1993-05-16
@@ -11,6 +11,9 @@ scriptversion=2005-06-29.22
 # bugs to <bug-automake@gnu.org> or send patches to
 # <automake-patches@gnu.org>.
 
+nl='
+'
+IFS=" ""       $nl"
 errstatus=0
 dirmode=
 
This page took 0.029146 seconds and 5 git commands to generate.