From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4C4F71384B4 for ; Mon, 2 Nov 2015 12:48:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9149121C003; Mon, 2 Nov 2015 12:48:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42E8221C003 for ; Mon, 2 Nov 2015 12:48:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B3C73407D7 for ; Mon, 2 Nov 2015 12:47:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5475D1E5B for ; Mon, 2 Nov 2015 12:47:57 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1446468438.1e4ad4895eb6acdd28c02e1b963de30c1be70837.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/windowmaker/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/windowmaker/windowmaker-0.95.7.ebuild x11-wm/windowmaker/windowmaker-9999.ebuild X-VCS-Directories: x11-wm/windowmaker/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 1e4ad4895eb6acdd28c02e1b963de30c1be70837 X-VCS-Branch: master Date: Mon, 2 Nov 2015 12:47:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d067b4f8-7b77-42c8-977c-5bfe62013e5b X-Archives-Hash: f4d9cb7a8c96c2ef27e1f06b6d059b48 commit: 1e4ad4895eb6acdd28c02e1b963de30c1be70837 Author: Bernard Cafarelli gentoo org> AuthorDate: Mon Nov 2 12:47:01 2015 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Mon Nov 2 12:47:18 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4ad489 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 31ec9aa..2fbceba 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 2e5a778..0753568 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