diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-08-26 20:23:35 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-08-26 20:23:35 +0300 |
| commit | 3a04d325aa8ac0f707689255b245ef59ba99be31 (patch) | |
| tree | e6b49e13ce0862ba1c9a3cd3df5fdedb7950e152 | |
| parent | 4ebce2c3f25d98f9ba49d9fcc343ffbe760363af (diff) | |
| download | meson-3a04d325aa8ac0f707689255b245ef59ba99be31.tar.gz | |
Fix packaging. [skip ci]
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rwxr-xr-x | run_unittests.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 53853d366..13f7949da 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -18,3 +18,4 @@ include run_project_tests.py include mesonrewriter.py include ghwt.py include __main__.py +include meson.py diff --git a/run_unittests.py b/run_unittests.py index c79b4e27f..fb4e7cb34 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -5476,6 +5476,8 @@ class LinuxCrossArmTests(BasePlatformTests): @skipIfNoPkgconfig def test_pkg_config_option(self): + if not shutil.which('arm-linux-gnueabihf-pkg-config'): + raise unittest.SkipTest('Cross-pkgconfig not found.') testdir = os.path.join(self.unit_test_dir, '58 pkg_config_path option') self.init(testdir, extra_args=[ '-Dbuild.pkg_config_path=' + os.path.join(testdir, 'build_extra_path'), |
