Skip to content

Commit 2f7ccb2

Browse files
committed
* configure: Use egrep, not grep.
Problem reported Mojca Miklavec <[email protected]>.
1 parent 94720c2 commit 2f7ccb2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2013-03-31 Werner Lemberg <[email protected]>
2+
3+
* configure: Use egrep, not grep.
4+
5+
Problem reported Mojca Miklavec <[email protected]>.
6+
17
2013-03-29 Werner Lemberg <[email protected]>
28

39
* include/freetype/ftlcdfil.h: Add description of color filtering.

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk
1818
# respect GNUMAKE environment variable for backwards compatibility
1919
if test "x$GNUMAKE" = x; then
2020
if test "x$MAKE" = x; then
21-
if test "x`make -v 2>/dev/null | grep '\(GNU\|makepp\)'`" = x; then
21+
if test "x`make -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
2222
MAKE=gmake
2323
else
2424
MAKE=make
@@ -28,7 +28,7 @@ else
2828
MAKE=$GNUMAKE
2929
fi
3030

31-
if test "x`$MAKE -v 2>/dev/null | grep '\(GNU\|makepp\)'`" = x; then
31+
if test "x`$MAKE -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
3232
echo "GNU make (>= 3.80) or makepp (>= 1.19) is required to build FreeType2." >&2
3333
echo "Please try" >&2
3434
echo >&2

0 commit comments

Comments
 (0)