diff options
author | 2019-11-04 21:15:49 +0100 | |
---|---|---|
committer | 2020-07-13 11:10:49 -0400 | |
commit | f7d3b09f3ae752b89362a2dbb2f891cae9464145 (patch) | |
tree | 0fae6856990b43bdda4499eb3673d69fc0ca17d3 /dev-util/pkgconf/pkgconf-9999.ebuild | |
parent | sys-kernel/bliss-initramfs: bumped to 8.1.0 (diff) | |
download | gentoo-f7d3b09f3ae752b89362a2dbb2f891cae9464145.tar.gz gentoo-f7d3b09f3ae752b89362a2dbb2f891cae9464145.tar.bz2 gentoo-f7d3b09f3ae752b89362a2dbb2f891cae9464145.zip |
dev-util/pkgconf: add support for windows
Signed-off-by: Matija Skala <mskala@gmx.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/13549
Diffstat (limited to 'dev-util/pkgconf/pkgconf-9999.ebuild')
-rw-r--r-- | dev-util/pkgconf/pkgconf-9999.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-util/pkgconf/pkgconf-9999.ebuild b/dev-util/pkgconf/pkgconf-9999.ebuild index c5741a924750..40e4e28319d4 100644 --- a/dev-util/pkgconf/pkgconf-9999.ebuild +++ b/dev-util/pkgconf/pkgconf-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit multilib-minimal +inherit multilib multilib-minimal if [[ ${PV} == "9999" ]] ; then inherit autotools git-r3 @@ -38,7 +38,7 @@ RDEPEND=" " MULTILIB_CHOST_TOOLS=( - /usr/bin/pkgconf + /usr/bin/pkgconf$(get_exeext) ) src_prepare() { @@ -47,7 +47,7 @@ src_prepare() { [[ ${PV} == "9999" ]] && eautoreconf if use pkg-config; then MULTILIB_CHOST_TOOLS+=( - /usr/bin/pkg-config + /usr/bin/pkg-config$(get_exeext) ) fi } @@ -66,7 +66,7 @@ multilib_src_install() { default if use pkg-config; then - dosym pkgconf /usr/bin/pkg-config + dosym pkgconf$(get_exeext) /usr/bin/pkg-config$(get_exeext) dosym pkgconf.1 /usr/share/man/man1/pkg-config.1 else rm "${ED}"/usr/share/aclocal/pkg.m4 || die |