summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Kohler <bkohler@gentoo.org>2023-03-02 14:56:33 -0600
committerBen Kohler <bkohler@gentoo.org>2023-03-02 15:05:14 -0600
commit5131936f609a6174403bdeab29e97a7033b2faf6 (patch)
tree83fab9b438f62e4341caaefaf65b4e40b5ce2287
parentx11-misc/bbdate: -Wregister fixes (diff)
downloadgentoo-5131936f609a6174403bdeab29e97a7033b2faf6.tar.gz
gentoo-5131936f609a6174403bdeab29e97a7033b2faf6.tar.bz2
gentoo-5131936f609a6174403bdeab29e97a7033b2faf6.zip
x11-misc/bbppp: -Wregister fixes
Closes: https://bugs.gentoo.org/898870 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
-rw-r--r--x11-misc/bbppp/bbppp-0.2.5-r1.ebuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/x11-misc/bbppp/bbppp-0.2.5-r1.ebuild b/x11-misc/bbppp/bbppp-0.2.5-r1.ebuild
index 5ae4a57762d3..bc6f3f4ff3ca 100644
--- a/x11-misc/bbppp/bbppp-0.2.5-r1.ebuild
+++ b/x11-misc/bbppp/bbppp-0.2.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -28,6 +28,9 @@ PATCHES=(
src_prepare() {
default
mv configure.{in,ac} || die
+ sed -i \
+ -e 's|register ||' \
+ Image.cc LinkedList.cc || die
eautoreconf
}