From 383630644649ece4462de5faea9aa8ae11576cda Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 18 Apr 2012 09:09:40 -0700 Subject: [PATCH] Revised prior OSX specific makefile fix to avoid a grep error message --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 17ada04f..639691e2 100644 --- a/makefile +++ b/makefile @@ -81,7 +81,7 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin) OSNAME = OSX LIBEXT = dylib # OSX's XCode gcc doesn't support LTO, but gcc built to explicitly enable it will work - ifeq (,$(shell $(GCC) -v /dev/null 2>&1 | grep '--enable-lto')) + ifeq (,$(shell $(GCC) -v /dev/null 2>&1 | grep '\-\-enable-lto')) LTO_EXCLUDE_VERSIONS += $(GCC_VERSION) endif else