summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2022-07-24 19:44:24 +0200
committerWerner Lemberg <wl@gnu.org>2022-07-24 19:49:56 +0200
commit9a00282efce6350e438cd2b9ef779cbc4a5c4d8b (patch)
tree4d8c3f5d4b24527feaea5397b2759cd9b9fc4a53
parent0417e54bec27aed35421a53271aaf0484adc892e (diff)
downloadfreetype2-9a00282efce6350e438cd2b9ef779cbc4a5c4d8b.tar.gz
* configure: s/egrep/grep -E/
`egrep` is deprecated.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 404f13ce2..0b910900a 100755
--- a/configure
+++ b/configure
@@ -18,7 +18,7 @@ rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk
# respect GNUMAKE environment variable for backward compatibility
if test "x$GNUMAKE" = x; then
if test "x$MAKE" = x; then
- if test "x`make -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
+ if test "x`make -v 2>/dev/null | grep -E 'GNU|makepp'`" = x; then
MAKE=gmake
else
MAKE=make
@@ -28,7 +28,7 @@ else
MAKE=$GNUMAKE
fi
-if test "x`$MAKE -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
+if test "x`$MAKE -v 2>/dev/null | grep -E 'GNU|makepp'`" = x; then
echo "GNU make (>= 3.81) or makepp (>= 2.0) is required to build FreeType2." >&2
echo "Please try" >&2
echo >&2