diff options
author | NP-Hardass <NP-Hardass@gentoo.org> | 2016-04-09 13:36:10 -0400 |
---|---|---|
committer | NP-Hardass <NP-Hardass@gentoo.org> | 2016-04-09 14:14:46 -0400 |
commit | a971a53c94485d66d0e0345e34a298099ab9ec36 (patch) | |
tree | 84b3bfc2174f00c3b240af873e878bfc53e7d0e8 /app-emulation/wine/wine-9999.ebuild | |
parent | app-admin/cli53: override S (diff) | |
download | gentoo-a971a53c94485d66d0e0345e34a298099ab9ec36.tar.gz gentoo-a971a53c94485d66d0e0345e34a298099ab9ec36.tar.bz2 gentoo-a971a53c94485d66d0e0345e34a298099ab9ec36.zip |
app-emulation/wine: Fix logic evaluation order
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-emulation/wine/wine-9999.ebuild')
-rw-r--r-- | app-emulation/wine/wine-9999.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app-emulation/wine/wine-9999.ebuild b/app-emulation/wine/wine-9999.ebuild index 89b9b2368048..e735b28385d7 100644 --- a/app-emulation/wine/wine-9999.ebuild +++ b/app-emulation/wine/wine-9999.ebuild @@ -265,8 +265,9 @@ src_prepare() { eend $? # To differentiate unofficial staging releases - [[ ! -z ${SUFFIX} ]] && \ + if [[ ! -z ${SUFFIX} ]]; then sed -i "s/(Staging)/(Staging [Unofficial])/" libs/wine/Makefile.in || die + fi fi autotools-utils_src_prepare |