diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-19 00:51:54 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-06-19 21:44:17 +0300 |
| commit | 22dcb692adefea7d51e480e36a53446cc0777c01 (patch) | |
| tree | 5282233fbdc4c870027469cdcee28dd6feac26c8 /test cases/python/2 extmodule | |
| parent | 43c60318fd28d23772cbc7a2b2e3152f6ec59e68 (diff) | |
| download | meson-22dcb692adefea7d51e480e36a53446cc0777c01.tar.gz | |
python module: implicitly add python dep to extensions
If there isn't a preexisting dependency on python, append one. It's
almost assuredly needed, so just do the right thing out of the box.
Diffstat (limited to 'test cases/python/2 extmodule')
| -rw-r--r-- | test cases/python/2 extmodule/ext/meson.build | 1 | ||||
| -rw-r--r-- | test cases/python/2 extmodule/ext/nested/meson.build | 1 | ||||
| -rw-r--r-- | test cases/python/2 extmodule/ext/wrongdir/meson.build | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/test cases/python/2 extmodule/ext/meson.build b/test cases/python/2 extmodule/ext/meson.build index 799e9b08a..14fa94abf 100644 --- a/test cases/python/2 extmodule/ext/meson.build +++ b/test cases/python/2 extmodule/ext/meson.build @@ -1,6 +1,5 @@ pylib = py.extension_module('tachyon', 'tachyon_module.c', - dependencies : py_dep, c_args: '-DMESON_MODULENAME="tachyon"', install: true, ) diff --git a/test cases/python/2 extmodule/ext/nested/meson.build b/test cases/python/2 extmodule/ext/nested/meson.build index 38d3d3e28..34c119273 100644 --- a/test cases/python/2 extmodule/ext/nested/meson.build +++ b/test cases/python/2 extmodule/ext/nested/meson.build @@ -1,6 +1,5 @@ py.extension_module('tachyon', '../tachyon_module.c', - dependencies : py_dep, c_args: '-DMESON_MODULENAME="nested.tachyon"', install: true, subdir: 'nested' diff --git a/test cases/python/2 extmodule/ext/wrongdir/meson.build b/test cases/python/2 extmodule/ext/wrongdir/meson.build index 1355d4fd7..5074701ea 100644 --- a/test cases/python/2 extmodule/ext/wrongdir/meson.build +++ b/test cases/python/2 extmodule/ext/wrongdir/meson.build @@ -1,6 +1,5 @@ py.extension_module('tachyon', '../tachyon_module.c', - dependencies : py_dep, c_args: '-DMESON_MODULENAME="tachyon"', install: true, install_dir: get_option('libdir') |
