From: Andreas Sturmlechner Date: Sat, 24 Nov 2018 23:00:40 +0000 (+0100) Subject: media-plugins/audacious-plugins: Disable po dir if USE !nls X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=768af9d61966e1c12d1861d431884eff1379e400;p=gentoo.git media-plugins/audacious-plugins: Disable po dir if USE !nls Build system fails to live up to the promise of --disable-nls, so do it manually. Bug: https://bugs.gentoo.org/512698 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner --- diff --git a/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild b/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild index 343ebd431ade..d3d11e6d7792 100644 --- a/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild +++ b/media-plugins/audacious-plugins/audacious-plugins-9999.ebuild @@ -110,6 +110,9 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default + if ! use nls; then + sed -e "/SUBDIRS/s/ po//" -i Makefile || die # bug #512698 + fi [[ ${PV} == *9999 ]] && eautoreconf }