diff options
author | Antoine Jacoutot <ajacoutot@openbsd.org> | 2019-04-03 10:34:06 +0200 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-04-03 08:54:06 -0700 |
commit | d4cece3b34b91ff9f726da2ffe340645ff0d7ad4 (patch) | |
tree | 63a9fe46e813b431a25b46609c83d3fcfba90e54 | |
parent | b1aa54bb2911ecf0f26391a9b1e0a6cd308913b5 (diff) | |
download | meson-d4cece3b34b91ff9f726da2ffe340645ff0d7ad4.zip meson-d4cece3b34b91ff9f726da2ffe340645ff0d7ad4.tar.gz meson-d4cece3b34b91ff9f726da2ffe340645ff0d7ad4.tar.bz2 |
test_pkgconfig_formatting: OpenBSD, libintil is a separate library
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index bc28eea..d803e12 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -4878,7 +4878,7 @@ endian = 'little' myenv['PKG_CONFIG_PATH'] = self.privatedir stdo = subprocess.check_output(['pkg-config', '--libs-only-l', 'libsomething'], env=myenv) deps = [b'-lgobject-2.0', b'-lgio-2.0', b'-lglib-2.0', b'-lsomething'] - if is_windows() or is_cygwin() or is_osx(): + if is_windows() or is_cygwin() or is_osx() or is_openbsd(): # On Windows, libintl is a separate library deps.append(b'-lintl') self.assertEqual(set(deps), set(stdo.split())) |