From 6d19f1ecb12f5b0cd2adabfafcc64e2d67e47148 Mon Sep 17 00:00:00 2001 From: Marcian Lytwyn Date: Thu, 10 Dec 2015 22:02:32 +0000 Subject: [PATCH] Fix -mno-sse inclusion git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@39231 72102866-910b-0410-8b05-ffd578937521 --- common.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.make b/common.make index 19f89b42e..980e2f7df 100644 --- a/common.make +++ b/common.make @@ -598,7 +598,7 @@ INTERNAL_OBJCFLAGS = -fno-strict-aliasing # Clang inserts move aligned packed instructions (i.e. movaps,etc) assembly # code however stack is not aligned causing fault crashes... ifeq ($(CC),clang) -ifeq ($(wildcard /etc/redhat-release),"") +ifneq ($(wildcard /etc/redhat-release),"") RH_RELEASE := $(shell cat /etc/redhat-release) ifeq ($(findstring CentOS,$(RH_RELEASE)),CentOS) ifeq ($(findstring 6.5,$(RH_RELEASE)),6.5)