diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-05-19 10:11:49 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-10-02 12:07:05 +0300 |
commit | a904939a43bf43289345321da68b743e0d9ea804 (patch) | |
tree | 5a4a9530fe498aef1969340a7b053636fe1c06d3 /meson.build | |
parent | 111835e860034fe10d7351b3056aff851057fe2b (diff) | |
download | apk-tools-a904939a43bf43289345321da68b743e0d9ea804.tar.gz apk-tools-a904939a43bf43289345321da68b743e0d9ea804.tar.bz2 apk-tools-a904939a43bf43289345321da68b743e0d9ea804.tar.xz apk-tools-a904939a43bf43289345321da68b743e0d9ea804.zip |
build: allow building without help in meson
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index d348ad5..4aaf5c5 100644 --- a/meson.build +++ b/meson.build @@ -12,6 +12,7 @@ apk_libdir = get_option('libdir') zlib_dep = dependency('zlib') openssl_dep = dependency('openssl') +lua_bin = find_program('lua' + get_option('lua_version'), required: get_option('help')) lua_dep = dependency('lua' + get_option('lua_version'), required: get_option('lua')) scdoc_dep = dependency('scdoc', version: '>=1.10', required: get_option('docs')) |