diff options
author | Sam James <sam@gentoo.org> | 2023-03-05 03:15:21 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-05 03:15:21 +0000 |
commit | 3d7a99ded14fd75be744828bf683b1ab470095ee (patch) | |
tree | b7918dc5fa9660860fb6d2b6b3a8d66e7fc45b4f /games-util | |
parent | games-util/gamepick: fix configure w/ clang 16 (diff) | |
download | gentoo-3d7a99ded14fd75be744828bf683b1ab470095ee.tar.gz gentoo-3d7a99ded14fd75be744828bf683b1ab470095ee.tar.bz2 gentoo-3d7a99ded14fd75be744828bf683b1ab470095ee.zip |
games-util/etswitch: fix configure w/ clang 16
Closes: https://bugs.gentoo.org/898996
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/etswitch/etswitch-0.1.14-r2.ebuild (renamed from games-util/etswitch/etswitch-0.1.14-r1.ebuild) | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/games-util/etswitch/etswitch-0.1.14-r1.ebuild b/games-util/etswitch/etswitch-0.1.14-r2.ebuild index 61b5ce230018..51497a7c6f71 100644 --- a/games-util/etswitch/etswitch-0.1.14-r1.ebuild +++ b/games-util/etswitch/etswitch-0.1.14-r2.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit autotools DESCRIPTION="*nix minimizer for a few games" HOMEPAGE="http://hem.bredband.net/b400150/" @@ -25,3 +27,9 @@ PATCHES=( "${FILESDIR}"/${P}-glibc.patch "${FILESDIR}"/${P}-fno-common.patch ) + +src_prepare() { + default + + eautoreconf +} |