POSIX Makefile: Fix CLANG 3.5

This commit is contained in:
Lorenz Meier 2015-07-05 16:16:09 +02:00
parent 0f24429d32
commit 2314ebe4c2
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ ifneq ($(USE_GCC),1)
HAVE_CLANG35:=$(shell clang-3.5 -dumpversion 2>/dev/null) HAVE_CLANG35:=$(shell clang-3.5 -dumpversion 2>/dev/null)
# Clang will report 4.2.1 as GCC version # Clang will report 4.2.1 as GCC version
HAVE_CLANG:=$(shell clang -dumpversion) HAVE_CLANG:=$(shell clang -dumpversion 2> /dev/null)
#If using ubuntu 14.04 and packaged clang 3.5 #If using ubuntu 14.04 and packaged clang 3.5
ifeq ($(HAVE_CLANG35),4.2.1) ifeq ($(HAVE_CLANG35),4.2.1)