diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-12-19 20:57:05 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-01-06 13:49:34 -0800 |
commit | 87742fd9f016873fcd9d91ef8bc4c3b1be925224 (patch) | |
tree | 3440382fc3f42616747ea3783d693359dd7e0348 | |
parent | 97d2a9d84c8d42af9e80de10f8a619c0f11f9d2f (diff) | |
download | meson-87742fd9f016873fcd9d91ef8bc4c3b1be925224.zip meson-87742fd9f016873fcd9d91ef8bc4c3b1be925224.tar.gz meson-87742fd9f016873fcd9d91ef8bc4c3b1be925224.tar.bz2 |
run_project_tests: correctly search for objcpp compiler
Instead of looking for an objc compiler. Fixes objc++ tests on
DragonFlyBSD (which has an objc but not an objc++ compiler)
Really though, the objc and objc++ tests need to be untangled so that
the objc tests can run even if an objc++ compiler is unavilable.
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 0bf5f31..810f00e 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -453,7 +453,7 @@ def have_objc_compiler(): return False try: objc_comp.sanity_check(env.get_scratch_dir(), env) - objcpp_comp = env.detect_objc_compiler(False) + objcpp_comp = env.detect_objcpp_compiler(False) except: return False if not objcpp_comp: |