diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-09-27 20:22:49 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-09-27 20:22:49 +0000 |
commit | ce28ff6b820ea27fa252143f24dc6a8201f5920f (patch) | |
tree | b3a853c2887ba60ca85ad4bddada432e5f737608 | |
parent | 89c1b9c7ee5059316bd847b4ea9fc24379af5842 (diff) | |
download | newlib-ce28ff6b820ea27fa252143f24dc6a8201f5920f.zip newlib-ce28ff6b820ea27fa252143f24dc6a8201f5920f.tar.gz newlib-ce28ff6b820ea27fa252143f24dc6a8201f5920f.tar.bz2 |
Fix unportable shell quoting.
/:
Sync from GCC:
PR bootstrap/44621
* configure.ac: Fix unportable shell quoting.
* configure: Regenerate.
config/:
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.
bfd/:
* configure: Regenerate.
gas/:
* configure: Regenerate.
gold/:
* configure: Regenerate.
intl/:
* configure: Regenerate.
ld/:
* configure: Regenerate.
opcodes/:
* configure: Regenerate.
binutils/:
* configure: Regenerate.
gprof/:
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/po.m4 | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
5 files changed, 15 insertions, 3 deletions
@@ -1,3 +1,11 @@ +2010-06-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + Sync from GCC: + + PR bootstrap/44621 + * configure.ac: Fix unportable shell quoting. + * configure: Regenerate. + 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu> PR target/44862 diff --git a/config/ChangeLog b/config/ChangeLog index 6fdf36c..4b5a427 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2010-06-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting. + 2010-09-06 H.J. Lu <hongjiu.lu@intel.com> PR target/45524 diff --git a/config/po.m4 b/config/po.m4 index 861e3de..2edd5a7 100644 --- a/config/po.m4 +++ b/config/po.m4 @@ -96,7 +96,7 @@ AC_DEFUN([AM_PO_SUBDIRS], case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" + ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. @@ -3108,7 +3108,7 @@ fi configdirs="$configdirs gold" ;; *) - configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" + configdirs=`echo " ${configdirs} " | sed -e 's/ ld / gold /'` ;; esac ENABLE_GOLD=yes diff --git a/configure.ac b/configure.ac index 2d39219..eca08fe 100644 --- a/configure.ac +++ b/configure.ac @@ -351,7 +351,7 @@ ENABLE_GOLD=no) configdirs="$configdirs gold" ;; *) - configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" + configdirs=`echo " ${configdirs} " | sed -e 's/ ld / gold /'` ;; esac ENABLE_GOLD=yes |