fix fallback variable name

This commit is contained in:
Goncalo Carvalho 2018-04-17 17:09:16 +01:00 committed by Aleksey Filippov
parent 88ca3805e7
commit 5faf7f1a96
1 changed files with 1 additions and 1 deletions

View File

@ -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])