summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2015-11-02 13:47:01 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2015-11-02 13:47:18 +0100
commit1e4ad4895eb6acdd28c02e1b963de30c1be70837 (patch)
tree15e8e69161b833b2e6bf2970bc0277f11e8c1831 /x11-wm/windowmaker
parentdev-vcs/mercurial: Removed old. (diff)
downloadgentoo-1e4ad4895eb6acdd28c02e1b963de30c1be70837.tar.gz
gentoo-1e4ad4895eb6acdd28c02e1b963de30c1be70837.tar.bz2
gentoo-1e4ad4895eb6acdd28c02e1b963de30c1be70837.zip
x11-wm/windowmaker: fix compilation with LINGUAS unset, bug #564694
Package-Manager: portage-2.2.23
Diffstat (limited to 'x11-wm/windowmaker')
-rw-r--r--x11-wm/windowmaker/windowmaker-0.95.7.ebuild2
-rw-r--r--x11-wm/windowmaker/windowmaker-9999.ebuild2
2 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/windowmaker/windowmaker-0.95.7.ebuild b/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
index 31ec9aa9c49a..2fbceba98450 100644
--- a/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
+++ b/x11-wm/windowmaker/windowmaker-0.95.7.ebuild
@@ -56,7 +56,7 @@ src_configure() {
myconf="${myconf} $(use_enable modelock) $(use_enable xrandr randr) $(use_enable xinerama)"
if use nls; then
- [[ -z $LINGUAS ]] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
+ [[ -z $LINGUAS ]] && export LINGUAS="$(ls po/*.po | sed 's:po/\(.*\)\.po$:\1:' | xargs)"
else
myconf="${myconf} --disable-locale"
fi
diff --git a/x11-wm/windowmaker/windowmaker-9999.ebuild b/x11-wm/windowmaker/windowmaker-9999.ebuild
index 2e5a7783c700..0753568bbb5d 100644
--- a/x11-wm/windowmaker/windowmaker-9999.ebuild
+++ b/x11-wm/windowmaker/windowmaker-9999.ebuild
@@ -62,7 +62,7 @@ src_configure() {
myconf="${myconf} $(use_enable modelock) $(use_enable xrandr randr) $(use_enable xinerama)"
if use nls; then
- [[ -z $LINGUAS ]] && export LINGUAS="`ls po/*.po | sed 's:po/\(.*\)\.po$:\1:'`"
+ [[ -z $LINGUAS ]] && export LINGUAS="$(ls po/*.po | sed 's:po/\(.*\)\.po$:\1:' | xargs)"
else
myconf="${myconf} --disable-locale"
fi