diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-16 09:40:35 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-16 20:28:56 -0700 |
| commit | fc86df3d2c5a899f3eb5fafd59bd16cc3ec9327a (patch) | |
| tree | b181f350e7351cee220422acea8c54c481e6bb10 | |
| parent | a4a53237f1902c67afdafa9ab25b7baddf4ef43e (diff) | |
| download | meson-fc86df3d2c5a899f3eb5fafd59bd16cc3ec9327a.tar.gz | |
linkers: Fix argument error
The name of the argument passed was not the name of the argument used.
| -rw-r--r-- | mesonbuild/linkers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index b6e644358..3903e0af0 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -908,7 +908,7 @@ class CompCertDynamicLinker(DynamicLinker): return ['-o{}'.format(outputname)] def get_search_args(self, dirname: str) -> T.List[str]: - return ['-L{}'.format(outputname)] + return ['-L{}'.format(dirname)] def get_allow_undefined_args(self) -> T.List[str]: return [] |
