diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-22 14:22:42 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-08-14 13:13:22 -0700 |
commit | 0e718b069960d3d3003a3afeadfad59c24fb5f23 (patch) | |
tree | cfccedc590495dadbd4e89a2afe92a16e8fd0dae | |
parent | 90e43dbdfe06d062939803ec4ee261315096aee7 (diff) | |
download | meson-0e718b069960d3d3003a3afeadfad59c24fb5f23.zip meson-0e718b069960d3d3003a3afeadfad59c24fb5f23.tar.gz meson-0e718b069960d3d3003a3afeadfad59c24fb5f23.tar.bz2 |
tests/186: Make work with apple ld's -fatal_warnings
the fact that foo and bar are not directories makes Apple's ld upset, and with
fatal warnings it dies on this test. Using real directories makes it happy.
-rw-r--r-- | test cases/common/185 has link arg/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/185 has link arg/meson.build b/test cases/common/185 has link arg/meson.build index 10f2218..d6afc74 100644 --- a/test cases/common/185 has link arg/meson.build +++ b/test cases/common/185 has link arg/meson.build @@ -8,8 +8,8 @@ if cc.get_argument_syntax() == 'msvc' useless = '/DEBUG' isnt_arg = '/iambroken' else - is_arg = '-Wl,-Lfoo' - useless = '-Wl,-Lbar' + is_arg = '-Wl,-L/tmp' + useless = '-Wl,-L/usr' isnt_arg = '-Wl,-iambroken' endif |