From 00de856ef8bed699cf27efa738c705d929e2786e Mon Sep 17 00:00:00 2001 From: "Marty E. Plummer" Date: Thu, 22 Mar 2018 02:55:12 -0500 Subject: app-crypt/rhash: pass --target=${CHOST} to configure Without this change, app-crypt/rhash when built with a mingw-w64 crossdev toolchain ends up with the various rhash binaries being PE32 binaries without an '*.exe' extension and librhash having a '*.so' extension, also a PE32 library, and no import library ('*.dll.a'). Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7548 --- app-crypt/rhash/rhash-1.3.6-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app-crypt/rhash') diff --git a/app-crypt/rhash/rhash-1.3.6-r1.ebuild b/app-crypt/rhash/rhash-1.3.6-r1.ebuild index affa82411479..69f97e6e47ab 100644 --- a/app-crypt/rhash/rhash-1.3.6-r1.ebuild +++ b/app-crypt/rhash/rhash-1.3.6-r1.ebuild @@ -34,6 +34,7 @@ src_prepare() { multilib_src_configure() { set -- \ ./configure \ + --target="${CHOST}" \ --cc="$(tc-getCC)" \ --ar="$(tc-getAR)" \ --extra-cflags="${CFLAGS}" \ @@ -59,8 +60,9 @@ multilib_src_configure() { multilib_src_install() { # -j1 needed due to race condition. emake DESTDIR="${D}" -j1 \ - install{,-lib-so-link,-pkg-config} \ - $(use nls && echo install-gmo) + install{,-pkg-config} \ + $(use nls && echo install-gmo) \ + $(use kernel_Winnt || echo install-lib-so-link) emake DESTDIR="${D}" -j1 \ -C lib${PN} install-headers -- cgit v1.2.3-65-gdbad