aboutsummaryrefslogtreecommitdiff
path: root/libbacktrace
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2022-06-27 12:57:23 -0700
committerIan Lance Taylor <iant@golang.org>2022-06-27 13:00:01 -0700
commit6ce49a6e69a913e08b596b2da8f794cc21558d3c (patch)
treecec24e0d6b938662a44e580e42d7eff59e572149 /libbacktrace
parent508231d54405ac9f120cf30c28cd6eb10ceded30 (diff)
downloadgcc-6ce49a6e69a913e08b596b2da8f794cc21558d3c.zip
gcc-6ce49a6e69a913e08b596b2da8f794cc21558d3c.tar.gz
gcc-6ce49a6e69a913e08b596b2da8f794cc21558d3c.tar.bz2
libbacktrace: replace fgrep with grep in configure script
Patch by Xi Ruoyao. * configure.ac: Use grep instead of fgrep. * configure, Makefile.in: Regenerate.
Diffstat (limited to 'libbacktrace')
-rw-r--r--libbacktrace/Makefile.in2
-rwxr-xr-xlibbacktrace/configure2
-rw-r--r--libbacktrace/configure.ac2
3 files changed, 3 insertions, 3 deletions
diff --git a/libbacktrace/Makefile.in b/libbacktrace/Makefile.in
index 08cdd21..8898251 100644
--- a/libbacktrace/Makefile.in
+++ b/libbacktrace/Makefile.in
@@ -15,7 +15,7 @@
@SET_MAKE@
# Makefile.am -- Backtrace Makefile.
-# Copyright (C) 2012-2021 Free Software Foundation, Inc.
+# Copyright (C) 2012-2022 Free Software Foundation, Inc.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
diff --git a/libbacktrace/configure b/libbacktrace/configure
index 17f470a..537486d 100755
--- a/libbacktrace/configure
+++ b/libbacktrace/configure
@@ -13831,7 +13831,7 @@ else
libbacktrace_cv_objcopy_debuglink=no
elif ! test -n "${OBJCOPY}"; then
libbacktrace_cv_objcopy_debuglink=no
-elif ${OBJCOPY} --help | fgrep add-gnu-debuglink >/dev/null 2>&1; then
+elif ${OBJCOPY} --help | grep add-gnu-debuglink >/dev/null 2>&1; then
libbacktrace_cv_objcopy_debuglink=yes
else
libbacktrace_cv_objcopy_debuglink=no
diff --git a/libbacktrace/configure.ac b/libbacktrace/configure.ac
index 597c970..857987a 100644
--- a/libbacktrace/configure.ac
+++ b/libbacktrace/configure.ac
@@ -500,7 +500,7 @@ AC_CACHE_CHECK([whether objcopy supports debuglink],
libbacktrace_cv_objcopy_debuglink=no
elif ! test -n "${OBJCOPY}"; then
libbacktrace_cv_objcopy_debuglink=no
-elif ${OBJCOPY} --help | fgrep add-gnu-debuglink >/dev/null 2>&1; then
+elif ${OBJCOPY} --help | grep add-gnu-debuglink >/dev/null 2>&1; then
libbacktrace_cv_objcopy_debuglink=yes
else
libbacktrace_cv_objcopy_debuglink=no