diff options
author | Sam James <sam@gentoo.org> | 2021-05-17 00:39:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-05-17 00:39:12 +0000 |
commit | 4a295fd356b468d49f7b4e611b0d9d116f32b0f4 (patch) | |
tree | 0ca779fa210a98d1f0ebabf0d251ed6c879b1c07 /net-analyzer | |
parent | net-analyzer/vnstat: port 1.17, 2.6 to GLEP 81 too (diff) | |
download | gentoo-4a295fd356b468d49f7b4e611b0d9d116f32b0f4.tar.gz gentoo-4a295fd356b468d49f7b4e611b0d9d116f32b0f4.tar.bz2 gentoo-4a295fd356b468d49f7b4e611b0d9d116f32b0f4.zip |
net-analyzer/vnstat: fix 1.17 with GCC 10
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/vnstat/vnstat-1.17-r1.ebuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net-analyzer/vnstat/vnstat-1.17-r1.ebuild b/net-analyzer/vnstat/vnstat-1.17-r1.ebuild index fceff0f93ca9..8aa25d8a3276 100644 --- a/net-analyzer/vnstat/vnstat-1.17-r1.ebuild +++ b/net-analyzer/vnstat/vnstat-1.17-r1.ebuild @@ -4,7 +4,7 @@ EAPI=7 VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/teemutoivola.asc -inherit toolchain-funcs verify-sig +inherit flag-o-matic toolchain-funcs verify-sig DESCRIPTION="Console-based network traffic monitor that keeps statistics of network usage" HOMEPAGE="https://humdi.net/vnstat/" @@ -43,6 +43,15 @@ src_prepare() { src/common.h || die } +src_configure() { + tc-export CC + + # Fails to build with GCC 10 + append-flags -fcommon + + default +} + src_compile() { emake ${PN} ${PN}d $(usex gd ${PN}i '') } |