diff options
author | Goncalo Carvalho <glslang@gmail.com> | 2018-04-17 17:09:16 +0100 |
---|---|---|
committer | Aleksey Filippov <sarum9in@gmail.com> | 2018-04-17 12:00:57 -0700 |
commit | 5faf7f1a96ee58b0c9fec4660e5b402273715464 (patch) | |
tree | dce4a179c8587541e14be915d163d3a950f094f3 /manual tests | |
parent | 88ca3805e74e67d81499bcf02362d8935dd8ec7a (diff) | |
download | meson-5faf7f1a96ee58b0c9fec4660e5b402273715464.zip meson-5faf7f1a96ee58b0c9fec4660e5b402273715464.tar.gz meson-5faf7f1a96ee58b0c9fec4660e5b402273715464.tar.bz2 |
fix fallback variable name
Diffstat (limited to 'manual tests')
-rw-r--r-- | manual tests/2 multiwrap/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual tests/2 multiwrap/meson.build b/manual tests/2 multiwrap/meson.build index 741a899..a4c42f4 100644 --- a/manual tests/2 multiwrap/meson.build +++ b/manual tests/2 multiwrap/meson.build @@ -6,7 +6,7 @@ project('multiwrap', 'c', cc = meson.get_compiler('c') luadep = dependency('lua', fallback : ['lua', 'lua_dep']) -pngdep = dependency('libpng', fallback : ['libpng', 'pngdep']) +pngdep = dependency('libpng', fallback : ['libpng', 'png_dep']) executable('prog', 'prog.c', dependencies : [pngdep, luadep]) |