From 2e4fb1da8520b4000ed970408586c55780d0dd3f Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Tue, 15 Apr 2008 16:31:15 +0000 Subject: [PATCH] force use of BSD sed for OS X hack (patch by Alexey Zakhlestin) --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 1571cc2301..aa40c40b3a 100644 --- a/configure.in +++ b/configure.in @@ -212,7 +212,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'` -- 2.50.1