diff options
author | 2016-11-29 15:21:40 -0600 | |
---|---|---|
committer | 2016-11-29 15:21:51 -0600 | |
commit | 177d61f02f8c2865910179d81c43f703f221e6b9 (patch) | |
tree | 1b1403a01208570e0179d5c836f41a3704f04571 /app-emulation/wine/wine-1.9.5-r3.ebuild | |
parent | games-util/pogo-manager-bin: version bump, 0.1.5 (diff) | |
download | gentoo-177d61f02f8c2865910179d81c43f703f221e6b9.tar.gz gentoo-177d61f02f8c2865910179d81c43f703f221e6b9.tar.bz2 gentoo-177d61f02f8c2865910179d81c43f703f221e6b9.zip |
app-emulation/wine: fix wineconsole manpage removal for USE="-X -ncurses"
Gentoo-Bug: https://bugs.gentoo.org/596498
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-emulation/wine/wine-1.9.5-r3.ebuild')
-rw-r--r-- | app-emulation/wine/wine-1.9.5-r3.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app-emulation/wine/wine-1.9.5-r3.ebuild b/app-emulation/wine/wine-1.9.5-r3.ebuild index 01be56226954..49b9dc78c43a 100644 --- a/app-emulation/wine/wine-1.9.5-r3.ebuild +++ b/app-emulation/wine/wine-1.9.5-r3.ebuild @@ -488,7 +488,8 @@ multilib_src_install_all() { # Remove wineconsole if neither backend is installed #551124 if ! use X && ! use ncurses; then - rm "${D}"/usr/{bin/,man/man1/}wineconsole* || die + rm "${D}"/usr/bin/wineconsole* || die + rm "${D}"/usr/share/man/man1/wineconsole* || die use abi_x86_32 && rm "${D}"/usr/lib32/wine/{,fakedlls/}wineconsole.exe* || die use abi_x86_64 && rm "${D}"/usr/lib64/wine/{,fakedlls/}wineconsole.exe* || die fi |