diff options
author | Brian Smith <brian@dbsoft.org> | 2022-06-15 01:16:15 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2022-06-15 01:16:15 -0500 |
commit | 2d9b9a9617626d879e41ae3277c4253b32d0286c (patch) | |
tree | fcc6e3374db5d8fa7b6a82187061542c421361c0 | |
parent | 5652238ba898931d9705c9df37259284bb76619e (diff) | |
download | uxp-2d9b9a9617626d879e41ae3277c4253b32d0286c.tar.gz |
Issue #1905 - Part 4a - Change "as" test to "Apple" from "LLVM".
This will make this test Mac only, but it should work with any Xcode.
-rw-r--r-- | build/autoconf/toolchain.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/autoconf/toolchain.m4 b/build/autoconf/toolchain.m4 index 9fc76a3f6e..47f4ec0505 100644 --- a/build/autoconf/toolchain.m4 +++ b/build/autoconf/toolchain.m4 @@ -27,7 +27,7 @@ fi if test "`echo | $AS -o conftest.out -v 2>&1 | grep -c GNU`" != "0"; then GNU_AS=1 fi -if test "`echo | $AS -o conftest.out -v 2>&1 | grep -c LLVM`" != "0"; then +if test "`echo | $AS -o conftest.out -v 2>&1 | grep -c Apple`" != "0"; then GNU_AS=1 fi rm -f conftest.out |