diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-09-27 20:19:41 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2010-09-27 20:19:41 +0000 |
commit | 86dfbd58cf99eadaac3056d6de263f37a631a363 (patch) | |
tree | 9821cf7bb3605e22ac0bbeda8721adaaab6cb09f /config/po.m4 | |
parent | cd3c99ba58a546485653315227d8ca4cf857c0aa (diff) | |
download | gcc-86dfbd58cf99eadaac3056d6de263f37a631a363.zip gcc-86dfbd58cf99eadaac3056d6de263f37a631a363.tar.gz gcc-86dfbd58cf99eadaac3056d6de263f37a631a363.tar.bz2 |
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.
From-SVN: r164668
Diffstat (limited to 'config/po.m4')
-rw-r--r-- | config/po.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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. |