diff options
author | Ma Jiang <ma.jiang@zte.com.cn> | 2016-12-01 23:02:51 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-12-01 16:02:51 -0700 |
commit | b55e6680dec27409fe0e6dc800500564f1a06b53 (patch) | |
tree | 63905b7daad2ef00e845bd79baab65abae69deb4 /config | |
parent | f13d510e361b10bc0c83e211671f158c6665cd8e (diff) | |
download | gcc-b55e6680dec27409fe0e6dc800500564f1a06b53.zip gcc-b55e6680dec27409fe0e6dc800500564f1a06b53.tar.gz gcc-b55e6680dec27409fe0e6dc800500564f1a06b53.tar.bz2 |
acx.m4: Change "tail +16c" to "tail -c +17".
* config/acx.m4: Change "tail +16c" to "tail -c +17".
* configure: Regenerated.
From-SVN: r243142
Diffstat (limited to 'config')
-rw-r--r-- | config/acx.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/acx.m4 b/config/acx.m4 index 9ff31eb..ab42972 100644 --- a/config/acx.m4 +++ b/config/acx.m4 @@ -404,7 +404,7 @@ AC_DEFUN([ACX_PROG_CMP_IGNORE_INITIAL], [AC_CACHE_CHECK([how to compare bootstrapped objects], gcc_cv_prog_cmp_skip, [ echo abfoo >t1 echo cdfoo >t2 - gcc_cv_prog_cmp_skip='tail +16c $$f1 > tmp-foo1; tail +16c $$f2 > tmp-foo2; cmp tmp-foo1 tmp-foo2' + gcc_cv_prog_cmp_skip='tail -c +17 $$f1 > tmp-foo1; tail -c +17 $$f2 > tmp-foo2; cmp tmp-foo1 tmp-foo2' if cmp t1 t2 2 2 > /dev/null 2>&1; then if cmp t1 t2 1 1 > /dev/null 2>&1; then : |