diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 21:45:35 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 21:45:35 +0000 |
commit | a495930c1da8b3afef42551cad50c5c6fbfb7c48 (patch) | |
tree | f2573cb2e27efb9d830bf7b137c6bc5603a3581b /compiler-rt | |
parent | 2da0d1cfd3b0068c2a5b84364a452a8768fdc6b3 (diff) | |
download | bcm5719-llvm-a495930c1da8b3afef42551cad50c5c6fbfb7c48.tar.gz bcm5719-llvm-a495930c1da8b3afef42551cad50c5c6fbfb7c48.zip |
[build/clang_darwin] Fix the case reversal in r173465.
- I got confused by the double negative, the test succends on 10.6, in which
case we *do* want to perform the filter-out.
llvm-svn: 173977
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/make/platform/clang_darwin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index 7f8b4d713bc..5179ce7df36 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/make/platform/clang_darwin.mk @@ -84,7 +84,7 @@ UniversalArchs.ubsan_osx := $(call CheckArches,i386 x86_64,ubsan_osx) # build the libraries themselves so that Clang can find them where it expects # them, even though they might not have an expected slice. ifneq ($(shell which sw_vers),) -ifeq ($(shell sw_vers -productVersion | grep 10.6),) +ifneq ($(shell sw_vers -productVersion | grep 10.6),) UniversalArchs.ios := $(filter-out armv7, $(UniversalArchs.ios)) UniversalArchs.cc_kext := $(filter-out armv7, $(UniversalArchs.cc_kext)) UniversalArchs.cc_kext_ios5 := $(filter-out armv7, $(UniversalArchs.cc_kext_ios5)) |