aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-07-22 14:22:42 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-08-14 13:13:22 -0700
commit0e718b069960d3d3003a3afeadfad59c24fb5f23 (patch)
treecfccedc590495dadbd4e89a2afe92a16e8fd0dae
parent90e43dbdfe06d062939803ec4ee261315096aee7 (diff)
downloadmeson-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.build4
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