diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2023-08-06 00:20:29 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-08-06 00:39:58 +0200 |
commit | 19e190e767f23429214593c56b50fb06cae4b9d8 (patch) | |
tree | 9f4320788312220902196042de239281da850e81 /dev-lua | |
parent | dev-lua/lua_cliargs: fix QA ExcessiveLineLength (diff) | |
download | gentoo-19e190e767f23429214593c56b50fb06cae4b9d8.tar.gz gentoo-19e190e767f23429214593c56b50fb06cae4b9d8.tar.bz2 gentoo-19e190e767f23429214593c56b50fb06cae4b9d8.zip |
dev-lua/luaossl: fix QA ExcessiveLineLength
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua')
-rw-r--r-- | dev-lua/luaossl/luaossl-20220711.ebuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/dev-lua/luaossl/luaossl-20220711.ebuild b/dev-lua/luaossl/luaossl-20220711.ebuild index 0cbaf9a0b4ed..125f5e9215b0 100644 --- a/dev-lua/luaossl/luaossl-20220711.ebuild +++ b/dev-lua/luaossl/luaossl-20220711.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -35,7 +35,13 @@ src_prepare() { # Remove Lua autodetection # Respect users CFLAGS - sed -e '/LUAPATH :=/d' -e '/LUAPATH_FN =/d' -e '/HAVE_API_FN =/d' -e '/WITH_API_FN/d' -e 's/-O2//g' -i GNUmakefile || die + sed \ + -e '/LUAPATH :=/d' \ + -e '/LUAPATH_FN =/d' \ + -e '/HAVE_API_FN =/d' \ + -e '/WITH_API_FN/d' \ + -e 's/-O2//g' \ + -i GNUmakefile || die lua_copy_sources } |