From 1e4ad4895eb6acdd28c02e1b963de30c1be70837 Mon Sep 17 00:00:00 2001 From: Bernard Cafarelli Date: Mon, 2 Nov 2015 13:47:01 +0100 Subject: [PATCH] x11-wm/windowmaker: fix compilation with LINGUAS unset, bug #564694 Package-Manager: portage-2.2.23 --- x11-wm/windowmaker/windowmaker-0.95.7.ebuild | 2 +- x11-wm/windowmaker/windowmaker-9999.ebuild | 2 +- 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 31ec9aa9c49a8..2fbceba984507 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 2e5a7783c7003..0753568bbb5d6 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