diff options
author | 2022-08-07 07:22:36 +0100 | |
---|---|---|
committer | 2022-08-07 07:23:28 +0100 | |
commit | a004655fbad62394aea65603608af5b1d17d9313 (patch) | |
tree | fb16f98f4ce09be75a0f00001b9889e21a3c6b35 /dev-util/pkgconf/pkgconf-9999.ebuild | |
parent | net-news/sfeed: Stabilize 1.5 amd64, #864091 (diff) | |
download | gentoo-a004655fbad62394aea65603608af5b1d17d9313.tar.gz gentoo-a004655fbad62394aea65603608af5b1d17d9313.tar.bz2 gentoo-a004655fbad62394aea65603608af5b1d17d9313.zip |
dev-util/pkgconf: fix cleanup error
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/pkgconf/pkgconf-9999.ebuild')
-rw-r--r-- | dev-util/pkgconf/pkgconf-9999.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-util/pkgconf/pkgconf-9999.ebuild b/dev-util/pkgconf/pkgconf-9999.ebuild index a889721e17d0..f2e53e490eb3 100644 --- a/dev-util/pkgconf/pkgconf-9999.ebuild +++ b/dev-util/pkgconf/pkgconf-9999.ebuild @@ -10,6 +10,7 @@ if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://gitea.treehouse.systems/ariadne/pkgconf.git" else SRC_URI="https://distfiles.dereferenced.org/${PN}/${P}.tar.xz" + # Per release notes, 1.9.0 is a testing/development release. KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi @@ -35,7 +36,8 @@ src_prepare() { [[ ${PV} == 9999 ]] && eautoreconf - MULTILIB_CHOST_TOOLS+=( + MULTILIB_CHOST_TOOLS=( + /usr/bin/pkgconf /usr/bin/pkg-config$(get_exeext) ) } |