diff options
author | Hanno <hanno@gentoo.org> | 2016-10-15 19:20:07 +0200 |
---|---|---|
committer | Hanno <hanno@gentoo.org> | 2016-10-15 19:20:07 +0200 |
commit | 3aa2a77ac8097d38a214b5460f2ca890458594dd (patch) | |
tree | 33859195dbf80e65c611e3669e72037cbaf9b8ba /app-arch/unp | |
parent | app-arch/unp: fix LINGUAS variable handling (diff) | |
download | gentoo-3aa2a77ac8097d38a214b5460f2ca890458594dd.tar.gz gentoo-3aa2a77ac8097d38a214b5460f2ca890458594dd.tar.bz2 gentoo-3aa2a77ac8097d38a214b5460f2ca890458594dd.zip |
app-arch/unp: fix compilation without LINGUAS variable
Fixes bug #597198.
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-arch/unp')
-rw-r--r-- | app-arch/unp/unp-2.0_pre7_p1-r1.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild index 1194f7d9dc89..97b3db7941e5 100644 --- a/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild +++ b/app-arch/unp/unp-2.0_pre7_p1-r1.ebuild @@ -28,7 +28,11 @@ PATCHES=( "${FILESDIR}/${P}-remove-deprecated-have.diff" ) src_compile() { if use nls; then strip-linguas -i . - emake -C po MOFILES="${LINGUAS// /.po }.po" + if [ -n "$LINGUAS" ]; then + emake -C po MOFILES="${LINGUAS// /.po }.po" + else + emake -C po + fi fi } @@ -40,6 +44,10 @@ src_install() { dobashcomp bash_completion.d/unp if use nls; then - emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" install + if [ -n "$LINGUAS" ]; then + emake -C po MOFILES="${LINGUAS// /.mo }.mo" DESTDIR="${D}" install + else + emake -C po DESTDIR="${D}" install + fi fi } |