diff options
author | 2020-05-20 13:04:45 +0200 | |
---|---|---|
committer | 2020-05-20 10:25:10 -0400 | |
commit | fb0dfdca643076b6f995252da23116f048a58f86 (patch) | |
tree | 9fbb48b6f89d8e41cc82ff547943939431130a73 /net-analyzer/netdata/netdata-9999.ebuild | |
parent | sys-kernel/gentoo-sources: Linux patch 4.9.224 and one additional patch (diff) | |
download | gentoo-fb0dfdca643076b6f995252da23116f048a58f86.tar.gz gentoo-fb0dfdca643076b6f995252da23116f048a58f86.tar.bz2 gentoo-fb0dfdca643076b6f995252da23116f048a58f86.zip |
net-analyzer/netdata: fix ebuild ignoring USE
An ebuild syntax error (stray comment breaking backslash line continuation)
introduced in 0521c7e8 causes ./configure to issue a number of warnings
and failes to pass any arguments to it.
Closes: https://github.com/gentoo/gentoo/pull/15890
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'net-analyzer/netdata/netdata-9999.ebuild')
-rw-r--r-- | net-analyzer/netdata/netdata-9999.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index 2682b937ff4a..16f4f1078275 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-9999.ebuild @@ -95,10 +95,11 @@ src_prepare() { } src_configure() { + # --disable-cloud: https://github.com/netdata/netdata/issues/8961 econf \ --localstatedir="${EPREFIX}"/var \ --with-user=netdata \ - --disable-cloud \ # https://github.com/netdata/netdata/issues/8961 + --disable-cloud \ $(use_enable jsonc) \ $(use_enable cups plugin-cups) \ $(use_enable dbengine) \ |