diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2021-09-28 14:50:25 +0200 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2021-09-28 14:52:28 +0200 |
commit | 67fbf2168638ddcf0b0fca51c7edf2b5a129a274 (patch) | |
tree | 656980a0ca25603dd520168a1f056b1a44eb74cc /dev-lua | |
parent | sys-fs/inotify-tools: Removed old (diff) | |
download | gentoo-67fbf2168638ddcf0b0fca51c7edf2b5a129a274.tar.gz gentoo-67fbf2168638ddcf0b0fca51c7edf2b5a129a274.tar.bz2 gentoo-67fbf2168638ddcf0b0fca51c7edf2b5a129a274.zip |
dev-lua/toluapp: Fix location of CMAKE_REMOVE_MODULES_LIST variable
Setting it after "inherit cmake" is wrong and leads to issues.
Closes: https://bugs.gentoo.org/811480
Package-Manager: Portage-3.0.24, Repoman-3.0.3
Signed-off-by: Matthias Schwarzott <zzam@gentoo.org>
Diffstat (limited to 'dev-lua')
-rw-r--r-- | dev-lua/toluapp/toluapp-1.0.93_p20190513-r100.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r100.ebuild b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r100.ebuild index c921edc57500..1e925c75128b 100644 --- a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r100.ebuild +++ b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r100.ebuild @@ -6,6 +6,8 @@ EAPI=7 # Newer Lua versions are NOT supported, see Bug #508222 LUA_COMPAT=( lua5-1 ) +CMAKE_REMOVE_MODULES_LIST="dist lua FindLua" + inherit cmake lua-single MY_PN=${PN/pp/++} @@ -30,7 +32,6 @@ PATCHES=( "${FILESDIR}"/${PN}-1.0.93_p20190513-fix-multilib.patch "${FILESDIR}"/${PN}-1.0.93_p20190513-lua-version.patch ) -CMAKE_REMOVE_MODULES_LIST="dist lua FindLua" src_configure() { local mycmakeargs=( |