aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-03-19 20:51:06 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-03-19 20:51:06 +0200
commit6ee2796879c49a1a338e7dbf4ddab59c140ccf14 (patch)
tree28ec75eb955e844fa791c45973ea545009607a03
parent19eb0e762a81fa4cd411d9bee1ed0809f52f4716 (diff)
downloadmeson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.zip
meson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.tar.gz
meson-6ee2796879c49a1a338e7dbf4ddab59c140ccf14.tar.bz2
THANK YOU STEVE JOBS FOR YOUR GREAT MODERN TOOLCHAIN!
-rwxr-xr-xtest cases/common/216 link custom/custom_stlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/216 link custom/custom_stlib.py b/test cases/common/216 link custom/custom_stlib.py
index 37cf298..7311c4c 100755
--- a/test cases/common/216 link custom/custom_stlib.py
+++ b/test cases/common/216 link custom/custom_stlib.py
@@ -23,7 +23,7 @@ def generate_lib_gnulike(outfile, c_file, private_dir, compiler_array):
out_file = pathlib.Path(outfile)
if out_file.exists():
out_file.unlink()
- link_cmd = [static_linker, 'csrD', outfile, str(o_file)]
+ link_cmd = [static_linker, 'csr', outfile, str(o_file)]
subprocess.check_call(link_cmd)
return 0