diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-05-07 15:49:26 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-05-07 15:50:14 +0300 |
commit | 5297e0ae60c6115c91dc132e8e72e1ec196a2fd5 (patch) | |
tree | a3447837e910c1a7f028ecc80152e5ede1b162b6 /net-irc/ii | |
parent | net-irc/ii: bump eapi to 7 & flesh out ebuilds (diff) | |
download | gentoo-5297e0ae60c6115c91dc132e8e72e1ec196a2fd5.tar.gz gentoo-5297e0ae60c6115c91dc132e8e72e1ec196a2fd5.tar.bz2 gentoo-5297e0ae60c6115c91dc132e8e72e1ec196a2fd5.zip |
net-irc/ii: sed-fix CFLAGS in 1.8
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-irc/ii')
-rw-r--r-- | net-irc/ii/ii-1.8.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-irc/ii/ii-1.8.ebuild b/net-irc/ii/ii-1.8.ebuild index 5ef9e5bdca9f..be2821b3f793 100644 --- a/net-irc/ii/ii-1.8.ebuild +++ b/net-irc/ii/ii-1.8.ebuild @@ -15,7 +15,8 @@ KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux" src_prepare() { default - sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' config.mk || die + sed -i -e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \ + -e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' config.mk || die } src_compile() { |