diff options
author | Michael Hirsch <scivision@users.noreply.github.com> | 2020-07-12 09:04:59 -0400 |
---|---|---|
committer | Michael Hirsch <scivision@users.noreply.github.com> | 2020-07-12 09:04:59 -0400 |
commit | 173d1624cb82f213d1e4fd738874c4de49f9bf47 (patch) | |
tree | 32abf0e42f234c63540c51cc095bec360dea2789 | |
parent | ab72f52743518915c7602f6d3631b9cb8080e0e2 (diff) | |
download | meson-173d1624cb82f213d1e4fd738874c4de49f9bf47.zip meson-173d1624cb82f213d1e4fd738874c4de49f9bf47.tar.gz meson-173d1624cb82f213d1e4fd738874c4de49f9bf47.tar.bz2 |
c lang not needed for this test
-rw-r--r-- | test cases/python/1 basic/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test cases/python/1 basic/meson.build b/test cases/python/1 basic/meson.build index 9c3af10..bd9a65c 100644 --- a/test cases/python/1 basic/meson.build +++ b/test cases/python/1 basic/meson.build @@ -1,4 +1,4 @@ -project('python sample', 'c') +project('python sample') py_mod = import('python') py = py_mod.find_installation('python3') @@ -12,6 +12,7 @@ py_purelib = py.get_path('purelib') if not py_purelib.endswith('site-packages') error('Python3 purelib path seems invalid? ' + py_purelib) endif +message('Python purelib path:', py_purelib) # could be 'lib64' or 'Lib' on some systems py_platlib = py.get_path('platlib') |