aboutsummaryrefslogtreecommitdiff
path: root/manual tests
diff options
context:
space:
mode:
authorGoncalo Carvalho <glslang@gmail.com>2018-04-17 17:09:16 +0100
committerAleksey Filippov <sarum9in@gmail.com>2018-04-17 12:00:57 -0700
commit5faf7f1a96ee58b0c9fec4660e5b402273715464 (patch)
treedce4a179c8587541e14be915d163d3a950f094f3 /manual tests
parent88ca3805e74e67d81499bcf02362d8935dd8ec7a (diff)
downloadmeson-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.build2
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])