ref: 2f7ccb2399474a9d197f79916c9c7ad6c958d3d2
parent: 94720c2c56448bb9d97db7e1a7b9f2f515c5a987
author: Werner Lemberg <[email protected]>
date: Sun Mar 31 05:04:38 EDT 2013
* configure: Use egrep, not grep. Problem reported Mojca Miklavec <[email protected]>.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-03-31 Werner Lemberg <[email protected]>
+
+ * configure: Use egrep, not grep.
+
+ Problem reported Mojca Miklavec <[email protected]>.
+
2013-03-29 Werner Lemberg <[email protected]>
* include/freetype/ftlcdfil.h: Add description of color filtering.
--- a/configure
+++ b/configure
@@ -18,7 +18,7 @@
# respect GNUMAKE environment variable for backwards compatibility
if test "x$GNUMAKE" = x; then
if test "x$MAKE" = x; then
- if test "x`make -v 2>/dev/null | grep '\(GNU\|makepp\)'`" = x; then
+ if test "x`make -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
MAKE=gmake
else
MAKE=make
@@ -28,7 +28,7 @@
MAKE=$GNUMAKE
fi
-if test "x`$MAKE -v 2>/dev/null | grep '\(GNU\|makepp\)'`" = x; then
+if test "x`$MAKE -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
echo "GNU make (>= 3.80) or makepp (>= 1.19) is required to build FreeType2." >&2
echo "Please try" >&2
echo >&2