summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2023-08-06 00:20:29 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-08-06 00:39:58 +0200
commit19e190e767f23429214593c56b50fb06cae4b9d8 (patch)
tree9f4320788312220902196042de239281da850e81 /dev-lua
parentdev-lua/lua_cliargs: fix QA ExcessiveLineLength (diff)
downloadgentoo-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.ebuild10
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
}