aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-08-28 12:17:48 +0300
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-08-29 12:17:21 +0300
commit191a315586d2202f76cddc27f7c3579eafbbdce1 (patch)
treecd90d074d76c7c497fa12b6b0dcce60a9c2629f7
parent59c3dd1fdf1677e3754449314337277083327b03 (diff)
downloadmeson-191a315586d2202f76cddc27f7c3579eafbbdce1.zip
meson-191a315586d2202f76cddc27f7c3579eafbbdce1.tar.gz
meson-191a315586d2202f76cddc27f7c3579eafbbdce1.tar.bz2
Fix Cygwin test failure.
-rw-r--r--unittests/linuxliketests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
index 1b2607b..1ec23a0 100644
--- a/unittests/linuxliketests.py
+++ b/unittests/linuxliketests.py
@@ -1261,8 +1261,9 @@ class LinuxlikeTests(BasePlatformTests):
myenv['PKG_CONFIG_PATH'] = _prepend_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() or is_openbsd():
+ if is_windows() or is_osx() or is_openbsd():
# On Windows, libintl is a separate library
+ # It used to be on Cygwin as well, but no longer is.
deps.append(b'-lintl')
self.assertEqual(set(deps), set(stdo.split()))