diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-11-18 11:00:14 -0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-11-18 16:55:14 -0500 |
commit | 89c133b3db0522769c717aa878699cf19ab5f83d (patch) | |
tree | 7e5e311f8b85b484255d11b0f32395a83fee6b26 | |
parent | 4f4259de1b0d40c385d017675245e5d662017d0e (diff) | |
download | meson-89c133b3db0522769c717aa878699cf19ab5f83d.zip meson-89c133b3db0522769c717aa878699cf19ab5f83d.tar.gz meson-89c133b3db0522769c717aa878699cf19ab5f83d.tar.bz2 |
tests: remove extraframework test for python
This tries to link the system provided python, which is deprecated and
will result in an ambiguous error like "your binary is not an allowed
client of .../Library/Frameworks/python.framework/python.tbd for
architecture x86_64".
-rw-r--r-- | test cases/osx/5 extra frameworks/meson.build | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test cases/osx/5 extra frameworks/meson.build b/test cases/osx/5 extra frameworks/meson.build index cb4847e..0bd2c17 100644 --- a/test cases/osx/5 extra frameworks/meson.build +++ b/test cases/osx/5 extra frameworks/meson.build @@ -6,8 +6,5 @@ assert(dep_libs.type_name() == 'extraframeworks', 'type_name is ' + dep_libs.typ dep_main = dependency('Foundation') assert(dep_main.type_name() == 'extraframeworks', 'type_name is ' + dep_main.type_name()) -dep_py = dependency('python', method : 'extraframework') -assert(dep_main.type_name() == 'extraframeworks', 'type_name is ' + dep_main.type_name()) - stlib = static_library('stat', 'stat.c', install : true, dependencies: dep_libs) exe = executable('prog', 'prog.c', install : true, dependencies: dep_main) |