Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/windowmaker/
Date: Mon, 02 Nov 2015 12:48:03
Message-Id: 1446468438.1e4ad4895eb6acdd28c02e1b963de30c1be70837.voyageur@gentoo
1 commit: 1e4ad4895eb6acdd28c02e1b963de30c1be70837
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 12:47:01 2015 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 12:47:18 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4ad489
7
8 x11-wm/windowmaker: fix compilation with LINGUAS unset, bug #564694
9
10 Package-Manager: portage-2.2.23
11
12 x11-wm/windowmaker/windowmaker-0.95.7.ebuild | 2 +-
13 x11-wm/windowmaker/windowmaker-9999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/x11-wm/windowmaker/windowmaker-0.95.7.ebuild b/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
17 index 31ec9aa..2fbceba 100644
18 --- a/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
19 +++ b/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
20 @@ -56,7 +56,7 @@ src_configure() {
21 myconf="${myconf} $(use_enable modelock) $(use_enable xrandr randr) $(use_enable xinerama)"
22
23 if use nls; then
24 - [[ -z $LINGUAS ]] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
25 + [[ -z $LINGUAS ]] && export LINGUAS="$(ls po/*.po | sed 's:po/\(.*\)\.po$:\1:' | xargs)"
26 else
27 myconf="${myconf} --disable-locale"
28 fi
29
30 diff --git a/x11-wm/windowmaker/windowmaker-9999.ebuild b/x11-wm/windowmaker/windowmaker-9999.ebuild
31 index 2e5a778..0753568 100644
32 --- a/x11-wm/windowmaker/windowmaker-9999.ebuild
33 +++ b/x11-wm/windowmaker/windowmaker-9999.ebuild
34 @@ -62,7 +62,7 @@ src_configure() {
35 myconf="${myconf} $(use_enable modelock) $(use_enable xrandr randr) $(use_enable xinerama)"
36
37 if use nls; then
38 - [[ -z $LINGUAS ]] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
39 + [[ -z $LINGUAS ]] && export LINGUAS="$(ls po/*.po | sed 's:po/\(.*\)\.po$:\1:' | xargs)"
40 else
41 myconf="${myconf} --disable-locale"
42 fi