diff options
author | Andrey Utkin <andrey_utkin@gentoo.org> | 2017-11-08 23:03:19 +0000 |
---|---|---|
committer | Vadim A. Misbakh-Soloviov <git@mva.name> | 2017-11-09 11:09:42 +0700 |
commit | e39e7974d5b5e207662c272efefde2c653db08e4 (patch) | |
tree | cc92da98bc5c03474e898f522a11015f91aa79d1 /net-im | |
parent | net-im/prosody: update the patch (diff) | |
download | lua-e39e7974d5b5e207662c272efefde2c653db08e4.tar.gz lua-e39e7974d5b5e207662c272efefde2c653db08e4.tar.bz2 lua-e39e7974d5b5e207662c272efefde2c653db08e4.zip |
net-im/prosody: fix failure at configure
Upstream commit 8283:330a8627e41d (configure: Remove unused "require
config" option) removed the configure argument which is used by ebuild.
This caused emerge failure.
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/prosody/prosody-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/prosody/prosody-9999.ebuild b/net-im/prosody/prosody-9999.ebuild index adce109..a9dafe0 100644 --- a/net-im/prosody/prosody-9999.ebuild +++ b/net-im/prosody/prosody-9999.ebuild @@ -111,7 +111,7 @@ src_configure() { --runwith="${lua}" \ --with-lua-include="$($(tc-getPKG_CONFIG) --variable includedir ${lua})" \ --with-lua-lib="$($(tc-getPKG_CONFIG) --variable libdir ${lua})" \ - --require-config "${myconf[@]}" || die "configure failed" + "${myconf[@]}" || die "configure failed" } src_compile() { |