diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2021-11-17 09:23:16 +0100 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2021-11-17 09:23:16 +0100 |
commit | 87dec97b468839dae343dbdc8ca1956a5047a911 (patch) | |
tree | 283d1f72effc251ea7bfba755db48e5286737d8b | |
parent | 6c58ea51576d5992b27fe8033ad2822a2eb8492c (diff) | |
download | aports-87dec97b468839dae343dbdc8ca1956a5047a911.tar.gz aports-87dec97b468839dae343dbdc8ca1956a5047a911.tar.bz2 aports-87dec97b468839dae343dbdc8ca1956a5047a911.tar.xz |
community/fennel: fix build with options="!check"
Without this patch, fennel.lua is only build because it is a prerequisite
of the test target. If tests are disabled with options="!check" (e.g. on
the riscv64 builder) then fennel.lua is not build at all and package()
fails.
This commit fixes this issue by explicitly building fennel.lua.
-rwxr-xr-x | community/fennel/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/fennel/APKBUILD b/community/fennel/APKBUILD index 27d76ecd3a..f97db51479 100755 --- a/community/fennel/APKBUILD +++ b/community/fennel/APKBUILD @@ -14,7 +14,7 @@ makedepends="lua5.4 lua5.4-dev lua5.4-libs" subpackages="$pkgname-doc" build() { - make fennel-bin LUA=lua$_lua_version STATIC_LUA_LIB=/usr/lib/liblua-$_lua_version.so.0.0.0 + make fennel.lua fennel-bin LUA=lua$_lua_version STATIC_LUA_LIB=/usr/lib/liblua-$_lua_version.so.0.0.0 ./fennel-bin --compile src/fennel/binary.fnl > binary.lua } |