diff options
| author | Randy Eckenrode <randy@largeandhighquality.com> | 2023-05-26 00:10:45 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-05-28 01:51:59 -0400 |
| commit | f71ca2825c6be5aa23583831691687a5e2a88d73 (patch) | |
| tree | 90630f7fd91f0ba50a937a3b7c2dd132d1236718 /test cases/objc/2 nsstring | |
| parent | 5689ecffa354be8e18ea2cd747709a277070fe18 (diff) | |
| download | meson-f71ca2825c6be5aa23583831691687a5e2a88d73.tar.gz | |
Fix test failures on Darwin on a case-sensitive fs
This issue was encounetered while working on a contribution to nixpkgs.
Nix allows the store to be installed on a separate, case-sensitive APFS
volume. When the store is on a case-sensitive volume, these tests fail
because they try to use `foundation` instead of `Foundation`.
Diffstat (limited to 'test cases/objc/2 nsstring')
| -rw-r--r-- | test cases/objc/2 nsstring/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/objc/2 nsstring/meson.build b/test cases/objc/2 nsstring/meson.build index 94d2cf18a..2c483d50d 100644 --- a/test cases/objc/2 nsstring/meson.build +++ b/test cases/objc/2 nsstring/meson.build @@ -1,7 +1,7 @@ project('nsstring', 'objc') if host_machine.system() == 'darwin' - dep = dependency('appleframeworks', modules : 'foundation') + dep = dependency('appleframeworks', modules : 'Foundation') elif host_machine.system() == 'cygwin' error('MESON_SKIP_TEST GNUstep is not packaged for Cygwin.') else |
