[Scummvm-git-logs] scummvm master -> 658e4114f4ae22b8ba69e61c76f489eff11104bd

lephilousophe noreply at scummvm.org
Sat Sep 17 10:29:39 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
658e4114f4 CONFIGURE: Use grep -F instead of deprecated fgrep


Commit: 658e4114f4ae22b8ba69e61c76f489eff11104bd
    https://github.com/scummvm/scummvm/commit/658e4114f4ae22b8ba69e61c76f489eff11104bd
Author: eientei95 (einstein95 at users.noreply.github.com)
Date: 2022-09-17T12:26:30+02:00

Commit Message:
CONFIGURE: Use grep -F instead of deprecated fgrep

Changed paths:
    configure


diff --git a/configure b/configure
index e074761454c..88ab8f02eb8 100755
--- a/configure
+++ b/configure
@@ -355,7 +355,7 @@ EOF
 }
 
 gcc_get_define() {
-	echo "" | $CXX -dM -E - | fgrep "$1" | head -n1 | cut -d ' ' -f 3-
+	echo "" | $CXX -dM -E - | grep -F "$1" | head -n1 | cut -d ' ' -f 3-
 }
 
 #




More information about the Scummvm-git-logs mailing list