diff options
author | David Robillard <d@drobilla.net> | 2025-01-20 22:12:38 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-10 16:07:44 -0500 |
commit | 2834ac957f73b9cc105ec62e981a292d677af19d (patch) | |
tree | 491e0fe0725e92c95d58ef946c3e3b8fcdb7d2b8 /src | |
parent | 9f56463f38633ba89a5b22151f3aa529a7603a50 (diff) | |
download | ingen-2834ac957f73b9cc105ec62e981a292d677af19d.tar.gz ingen-2834ac957f73b9cc105ec62e981a292d677af19d.tar.bz2 ingen-2834ac957f73b9cc105ec62e981a292d677af19d.zip |
Avoid using fallback for dependencies without a subproject
This screws things up with older meson versions, particularly with include_type
'system'. I don't think it had any purpose since there's no corresponding
subproject inside this one anyway.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/meson.build b/src/gui/meson.build index 266c8abb..810c7829 100644 --- a/src/gui/meson.build +++ b/src/gui/meson.build @@ -30,7 +30,6 @@ gtkmm_dep = dependency( ganv_dep = dependency( 'ganv-1', - fallback: ['ganv', 'ganv_dep'], include_type: 'system', required: get_option('gui'), version: '>= 1.5.2', |