From 5faf7f1a96ee58b0c9fec4660e5b402273715464 Mon Sep 17 00:00:00 2001 From: Goncalo Carvalho Date: Tue, 17 Apr 2018 17:09:16 +0100 Subject: [PATCH] fix fallback variable name --- manual tests/2 multiwrap/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual tests/2 multiwrap/meson.build b/manual tests/2 multiwrap/meson.build index 741a899b4..a4c42f468 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])