From: Gwynne Raskind Date: Tue, 15 Apr 2008 16:31:36 +0000 (+0000) Subject: MFH: force use of BSD sed for OS X hack (patch by Alexey Zakhlestin) X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=acfc6bd9e11cbffea3606517f9a998e7bc049e31;p=php MFH: force use of BSD sed for OS X hack (patch by Alexey Zakhlestin) --- diff --git a/configure.in b/configure.in index 80eb6e3b38..cb0d6632fe 100644 --- a/configure.in +++ b/configure.in @@ -211,7 +211,7 @@ dnl activate some gcc specific optimizations for gcc >= 4 if test "$GCC" = "yes"; then case $host_alias in *darwin*) - GCC_MAJOR_VERSION=`$CC -dumpversion | $SED -nE '1s/([[0-9]]+)\.[[0-9]]+\..*/\1/;1p'` + GCC_MAJOR_VERSION=`$CC -dumpversion | /usr/bin/sed -nE '1s/([[0-9]]+)\.[[0-9]]+\..*/\1/;1p'` ;; *) GCC_MAJOR_VERSION=`$CC --version | $SED -n '1s/[[^0-9]]*\([[0-9]]\+\)\.[[0-9]]\+\..*/\1/;1p'`