diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2016-07-19 22:40:57 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-07-19 20:10:57 +0300 |
commit | 88aafd363e3b63184b42d66b9307ec701670b529 (patch) | |
tree | 0ce768f1b7a5f7c7c21874edfeb4944f3bfa65e6 /run_cross_test.py | |
parent | 69d9c2228d718a627fdb3f8504cbc4cdff0b1f4c (diff) | |
download | meson-88aafd363e3b63184b42d66b9307ec701670b529.zip meson-88aafd363e3b63184b42d66b9307ec701670b529.tar.gz meson-88aafd363e3b63184b42d66b9307ec701670b529.tar.bz2 |
Normalize the path of a configured file to avoid dupes (#640)
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-x | run_cross_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py index a788850..3abd288 100755 --- a/run_cross_test.py +++ b/run_cross_test.py @@ -34,7 +34,7 @@ meson_command = './meson.py' extra_flags = ['--cross-file', sys.argv[1]] ninja_command = environment.detect_ninja() if ninja_command is None: - raise RuntimeError('Could not find Ninja executable.') + raise RuntimeError('Could not find Ninja v1.6 or newer') compile_commands = [ninja_command] test_commands = [ninja_command, 'test'] install_commands = [ninja_command, 'install'] |