diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-01-10 15:28:40 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-10-15 10:21:46 -0700 |
| commit | 62d983dea9869e00cfa433251ca1f2de073b30fc (patch) | |
| tree | f89c3d73375d5a297d07b9c398a47010759209cd /mesonbuild/build.py | |
| parent | 5fc1c18dfb9c63ad72f579a872aa1e4e47f11bf5 (diff) | |
| download | meson-62d983dea9869e00cfa433251ca1f2de073b30fc.tar.gz | |
build: remove validation for build_rpath
Diffstat (limited to 'mesonbuild/build.py')
| -rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 28577a613..7e9d3b430 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1291,8 +1291,6 @@ class BuildTarget(Target): if not isinstance(self.install_rpath, str): raise InvalidArguments('Install_rpath is not a string.') self.build_rpath = kwargs.get('build_rpath', '') - if not isinstance(self.build_rpath, str): - raise InvalidArguments('Build_rpath is not a string.') resources = extract_as_list(kwargs, 'resources') for r in resources: if not isinstance(r, str): |
