diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-02 12:38:15 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-02 12:38:15 +0300 |
commit | 3e12af383a81f88838918f1b1cd217a09b22597c (patch) | |
tree | aac7323abcc0ab8de78c527ed25b5f766a3e7a25 /run_tests.py | |
parent | 1c1277de7c8035f7a4b67b2606dd973a10dbc7d9 (diff) | |
download | meson-debfixes.tar.gz |
Imported Debian fixes by Matthias Klose.debfixes
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 1cc398331..648e6ce1e 100755 --- a/run_tests.py +++ b/run_tests.py @@ -131,7 +131,7 @@ def get_fake_options(prefix): return opts def should_run_linux_cross_tests(): - return shutil.which('arm-linux-gnueabihf-gcc-7') and not platform.machine().lower().startswith('arm') + return shutil.which('arm-linux-gnueabihf-gcc') and not platform.machine().lower().startswith('arm') def run_configure_inprocess(meson_command, commandlist): old_stdout = sys.stdout |