diff options
author | Sam James <sam@gentoo.org> | 2023-06-28 23:34:23 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-06-28 23:34:23 +0100 |
commit | 295a950b0c90175ea9ab778b7984a46bb1fd7a46 (patch) | |
tree | 743cf2080b7223a88b08a6100ce0a5132abbf336 /dev-lua/lpeg | |
parent | sys-apps/locale-gen: add gentoo, github upstream metadata (diff) | |
download | gentoo-295a950b0c90175ea9ab778b7984a46bb1fd7a46.tar.gz gentoo-295a950b0c90175ea9ab778b7984a46bb1fd7a46.tar.bz2 gentoo-295a950b0c90175ea9ab778b7984a46bb1fd7a46.zip |
dev-lua/lpeg: avoid double ROOT
lua_get_include_dir already contains it.
Closes: https://bugs.gentoo.org/909348
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lua/lpeg')
-rw-r--r-- | dev-lua/lpeg/lpeg-1.0.2-r101.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-lua/lpeg/lpeg-1.0.2-r101.ebuild b/dev-lua/lpeg/lpeg-1.0.2-r101.ebuild index 411d41357574..cb9aa50746f3 100644 --- a/dev-lua/lpeg/lpeg-1.0.2-r101.ebuild +++ b/dev-lua/lpeg/lpeg-1.0.2-r101.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -50,7 +50,7 @@ src_prepare() { lua_src_compile() { cd "${S}.${ELUA}/" || die emake CC="$(tc-getCC)" \ - LUADIR="${ESYSROOT}/$(lua_get_include_dir)" + LUADIR="${EPREFIX}/$(lua_get_include_dir)" } src_compile() { |