diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-01-10 15:49:43 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-10-15 10:21:46 -0700 |
| commit | 6b1bf61dacba30a4b4a079cde640838c665a393f (patch) | |
| tree | e05b722cc8f049363706c95d582d498433b9fdda /mesonbuild/modules | |
| parent | 867876cba9b94d9ffc691f18b4a27d394c335878 (diff) | |
| download | meson-6b1bf61dacba30a4b4a079cde640838c665a393f.tar.gz | |
build: remove validation for name prefix and suffix
Diffstat (limited to 'mesonbuild/modules')
| -rw-r--r-- | mesonbuild/modules/python3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/python3.py b/mesonbuild/modules/python3.py index 2e6779ab2..69ad1eece 100644 --- a/mesonbuild/modules/python3.py +++ b/mesonbuild/modules/python3.py @@ -50,7 +50,7 @@ class Python3Module(ExtensionModule): # On Windows the extension is pyd for some unexplainable reason. suffix = 'pyd' else: - suffix = [] + suffix = None kwargs['name_prefix'] = '' kwargs['name_suffix'] = suffix return self.interpreter.build_target(state.current_node, args, kwargs, SharedModule) |
