diff options
author | 2020-06-13 18:26:41 +0000 | |
---|---|---|
committer | 2020-06-13 14:59:13 -0400 | |
commit | 60b7072a739ba280d075d6d91da644cd6f3ee372 (patch) | |
tree | c96fcd8ebd64d257ac4c209c6278a90572c68c0c /dev-libs | |
parent | dev-java/protobuf-java: Delete old version (3.11.2). (diff) | |
download | gentoo-60b7072a739ba280d075d6d91da644cd6f3ee372.tar.gz gentoo-60b7072a739ba280d075d6d91da644cd6f3ee372.tar.bz2 gentoo-60b7072a739ba280d075d6d91da644cd6f3ee372.zip |
dev-libs/protobuf: Use not AC_PROG_CXX_FOR_BUILD.
Closes: https://bugs.gentoo.org/718876
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/protobuf/protobuf-3.10.1.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/protobuf/protobuf-3.11.4.ebuild | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/dev-libs/protobuf/protobuf-3.10.1.ebuild b/dev-libs/protobuf/protobuf-3.10.1.ebuild index 207d865f9404..53bd166190bc 100644 --- a/dev-libs/protobuf/protobuf-3.10.1.ebuild +++ b/dev-libs/protobuf/protobuf-3.10.1.ebuild @@ -42,6 +42,10 @@ DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) src_prepare() { default + + # https://github.com/protocolbuffers/protobuf/issues/7413 + sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die + eautoreconf } diff --git a/dev-libs/protobuf/protobuf-3.11.4.ebuild b/dev-libs/protobuf/protobuf-3.11.4.ebuild index 10dfc3a1a39a..568a3f45c37d 100644 --- a/dev-libs/protobuf/protobuf-3.11.4.ebuild +++ b/dev-libs/protobuf/protobuf-3.11.4.ebuild @@ -42,6 +42,10 @@ DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) src_prepare() { default + + # https://github.com/protocolbuffers/protobuf/issues/7413 + sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die + eautoreconf } |