From 3cac54d21655df90eb20491148c0fa3b7ca7065f Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Mon, 27 Sep 2010 20:23:01 +0000 Subject: [PATCH] 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. --- ChangeLog | 8 ++++++++ bfd/ChangeLog | 4 ++++ bfd/configure | 2 +- binutils/ChangeLog | 4 ++++ binutils/configure | 2 +- config/ChangeLog | 4 ++++ config/po.m4 | 2 +- configure | 2 +- configure.ac | 2 +- gas/ChangeLog | 4 ++++ gas/configure | 2 +- gold/ChangeLog | 4 ++++ gold/configure | 2 +- gprof/ChangeLog | 4 ++++ gprof/configure | 2 +- intl/ChangeLog | 4 ++++ intl/configure | 2 +- ld/ChangeLog | 4 ++++ ld/configure | 2 +- opcodes/ChangeLog | 4 ++++ opcodes/configure | 2 +- 21 files changed, 55 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2bfa99234e..263c1f744c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-06-27 Ralf Wildenhues + + Sync from GCC: + + PR bootstrap/44621 + * configure.ac: Fix unportable shell quoting. + * configure: Regenerate. + 2010-07-17 Jack Howarth PR target/44862 diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b281a04520..8068c4c6ee 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-24 Thomas Schwinge * elf32-arm.c, elf32-cris.c, elf32-hppa.c, elf32-i370.c, elf32-m32r.c, diff --git a/bfd/configure b/bfd/configure index e1ea93be78..980711aa26 100755 --- a/bfd/configure +++ b/bfd/configure @@ -18067,7 +18067,7 @@ _LT_EOF 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. diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 087293c67d..e8ea6badb9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-22 Mike Frysinger * MAINTAINERS: Add self as ADI Blackfin maintainer. diff --git a/binutils/configure b/binutils/configure index 7e8e3d1158..02b05fbf15 100755 --- a/binutils/configure +++ b/binutils/configure @@ -16325,7 +16325,7 @@ _LT_EOF 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. diff --git a/config/ChangeLog b/config/ChangeLog index 6fdf36cb69..4b5a427768 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2010-06-27 Ralf Wildenhues + + * po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting. + 2010-09-06 H.J. Lu PR target/45524 diff --git a/config/po.m4 b/config/po.m4 index 861e3dec39..2edd5a7d3b 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. diff --git a/configure b/configure index 0904ffb741..47f732f242 100755 --- a/configure +++ b/configure @@ -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 2d39219a61..eca08fe3ee 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 diff --git a/gas/ChangeLog b/gas/ChangeLog index 56d5e411ae..4511ea33a4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-27 Bernd Schmidt * config/tc-tic6x.c (tic6x_fix_adjustable): New function. diff --git a/gas/configure b/gas/configure index 530fa0d1e9..4b06ca44d7 100755 --- a/gas/configure +++ b/gas/configure @@ -16522,7 +16522,7 @@ _LT_EOF 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. diff --git a/gold/ChangeLog b/gold/ChangeLog index fa478b4252..bdc600f69a 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-17 Ian Lance Taylor * testsuite/memory_test.sh: Adjust for change of 2010-09-10. diff --git a/gold/configure b/gold/configure index 0259c2fe59..c6e12f6879 100755 --- a/gold/configure +++ b/gold/configure @@ -8562,7 +8562,7 @@ $as_echo X"$file" | 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. diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 91483bf2ae..58b02c1cbb 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-07-16 James Blackburn * corefile.c (core_sym_class): Fix handling of subprogram names diff --git a/gprof/configure b/gprof/configure index 57e91da21c..fd4544aee9 100755 --- a/gprof/configure +++ b/gprof/configure @@ -14393,7 +14393,7 @@ _LT_EOF 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. diff --git a/intl/ChangeLog b/intl/ChangeLog index 8460b3d554..4f0db13d4b 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-04-02 Ralf Wildenhues * aclocal.m4: Regenerate. diff --git a/intl/configure b/intl/configure index 0c228dd58c..34da38bed7 100755 --- a/intl/configure +++ b/intl/configure @@ -7830,7 +7830,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} 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. diff --git a/ld/ChangeLog b/ld/ChangeLog index 3ecb59cff3..bfa0e4d8e9 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-23 Dave Korn * scripttempl/armcoff.sc: Revert 2010-09-22 change. diff --git a/ld/configure b/ld/configure index ebe365744e..f89eb4852c 100755 --- a/ld/configure +++ b/ld/configure @@ -15533,7 +15533,7 @@ _LT_EOF 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. diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e2191005e7..312fb74d6b 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Ralf Wildenhues + + * configure: Regenerate. + 2010-09-27 Andreas Krebbel * s390-mkopc.c (enum s390_opcde_cpu_val): Add S390_OPCODE_Z196. diff --git a/opcodes/configure b/opcodes/configure index eb69ff4773..fe7c01ee49 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -14862,7 +14862,7 @@ _LT_EOF 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. -- 2.34.1