diff options
| author | Tristan Partin <tristan@partin.io> | 2024-04-23 17:36:07 -0500 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2024-04-23 17:38:29 -0700 |
| commit | 44c279a92063ad01ad26ef47b126fe180bc0947b (patch) | |
| tree | 29f5b08c37e2ac5505a79c622d430b743b90cc36 /test cases/unit | |
| parent | 4f94284013d257bf361b18da6c6d8c80e64cf24f (diff) | |
| download | meson-44c279a92063ad01ad26ef47b126fe180bc0947b.tar.gz | |
Use dl instead of zlib for checking an external dependency
Fedora has switched to zlib-ng, which has a version of `1.3.0.zlib-ng`,
causing AllPlatformTests.test_summary to fail. dl is much less likely to
change format.
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/71 summary/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/71 summary/meson.build b/test cases/unit/71 summary/meson.build index 76fc545f4..6f16191e2 100644 --- a/test cases/unit/71 summary/meson.build +++ b/test cases/unit/71 summary/meson.build @@ -13,7 +13,7 @@ summary({'Some boolean': false, summary({'missing prog': find_program('xyzzy', required: false), 'existing prog': find_program(get_option('python')).full_path(), 'missing dep': dependency('', required: false), - 'external dep': dependency('zlib', required: false), + 'external dep': dependency('dl', required: false), 'internal dep': declare_dependency(), 'disabler': disabler(), }, section: 'Stuff') |
