freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][gsoc-anurag-2022] * configure: s/egrep/grep -E/


From: Werner Lemberg (@wl)
Subject: [Git][freetype/freetype][gsoc-anurag-2022] * configure: s/egrep/grep -E/
Date: Sun, 24 Jul 2022 17:47:49 +0000

Werner Lemberg pushed to branch gsoc-anurag-2022 at FreeType / FreeType

Commits:

  • 8a29b81c
    by Werner Lemberg at 2022-07-24T19:44:24+02:00
    * configure: s/egrep/grep -E/
    
    `egrep` is deprecated.
    

1 changed file:

Changes:

  • configure
    ... ... @@ -18,7 +18,7 @@ rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk
    18 18
     # respect GNUMAKE environment variable for backward compatibility
    
    19 19
     if test "x$GNUMAKE" = x; then
    
    20 20
       if test "x$MAKE" = x; then
    
    21
    -    if test "x`make -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
    
    21
    +    if test "x`make -v 2>/dev/null | grep -E 'GNU|makepp'`" = x; then
    
    22 22
           MAKE=gmake
    
    23 23
         else
    
    24 24
           MAKE=make
    
    ... ... @@ -28,7 +28,7 @@ else
    28 28
       MAKE=$GNUMAKE
    
    29 29
     fi
    
    30 30
     
    
    31
    -if test "x`$MAKE -v 2>/dev/null | egrep 'GNU|makepp'`" = x; then
    
    31
    +if test "x`$MAKE -v 2>/dev/null | grep -E 'GNU|makepp'`" = x; then
    
    32 32
       echo "GNU make (>= 3.81) or makepp (>= 2.0) is required to build FreeType2." >&2
    
    33 33
       echo "Please try" >&2
    
    34 34
       echo >&2
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]