diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-27 20:19:41 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-27 20:19:41 +0000 |
commit | 3aa7b555cf1afc5ce9980b41bdc473e609066675 (patch) | |
tree | 9821cf7bb3605e22ac0bbeda8721adaaab6cb09f /intl | |
parent | 5b097d1dbd061bb1b859891d7d8149ff940e5e70 (diff) | |
download | gcc-3aa7b555cf1afc5ce9980b41bdc473e609066675.tar.gz |
Fix unportable shell quoting.
/:
PR bootstrap/44621
* configure.ac: Fix unportable shell quoting.
* configure: Regenerate.
config/:
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.
contrib/reghunt/:
* bin/gcc-svn-ids: Fix unportable shell quoting.
* date_based/reg_periodic: Likewise.
* date_based/reg_search: Likewise.
intl/:
PR bootstrap/44621
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164668 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'intl')
-rw-r--r-- | intl/ChangeLog | 5 | ||||
-rwxr-xr-x | intl/configure | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog index 8460b3d554d..ea012cd0017 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,8 @@ +2010-06-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + PR bootstrap/44621 + * configure: Regenerate. + 2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * aclocal.m4: Regenerate. diff --git a/intl/configure b/intl/configure index 0c228dd58cb..34da38bed7d 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. |