From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OBEZc-0005NK-EQ for garchives@archives.gentoo.org; Sun, 09 May 2010 22:02:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FF81E0829; Sun, 9 May 2010 22:02:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F2143E0829 for ; Sun, 9 May 2010 22:02:05 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 8DC061B4020 for ; Sun, 9 May 2010 22:02:05 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 944) id C14E52C4B7; Sun, 9 May 2010 22:02:04 +0000 (UTC) From: "Harald van Dijk (truedfx)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, truedfx@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-misc/tmux/files: tmux-1.2-locale.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: tmux-1.2-locale.patch X-VCS-Directories: app-misc/tmux/files X-VCS-Committer: truedfx X-VCS-Committer-Name: Harald van Dijk Content-Type: text/plain; charset=utf8 Message-Id: <20100509220204.C14E52C4B7@corvid.gentoo.org> Date: Sun, 9 May 2010 22:02:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a1282940-806c-4870-ae28-e9f08a61800c X-Archives-Hash: 020874fd831ce25061a7e2f82dac3792 truedfx 10/05/09 22:02:04 Added: tmux-1.2-locale.patch Log: Fix build error with et_EE locale (#318995) (Portage version: 2.2_rc67/cvs/Linux x86_64) Revision Changes Path 1.1 app-misc/tmux/files/tmux-1.2-locale.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/file= s/tmux-1.2-locale.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tmux/file= s/tmux-1.2-locale.patch?rev=3D1.1&content-type=3Dtext/plain Index: tmux-1.2-locale.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- tmux-1.2/GNUmakefile +++ tmux-1.2/GNUmakefile @@ -56,7 +56,7 @@ INSTALLBIN=3D install -g bin -o root -m 555 INSTALLMAN=3D install -g bin -o root -m 444 =20 -SRCS=3D $(shell echo *.c|sed 's|osdep-[a-z0-9]*.c||g') +SRCS=3D $(shell echo *.c|LC_ALL=3DC sed 's|osdep-[a-z0-9]*.c||g') include config.mk OBJS=3D $(patsubst %.c,%.o,$(SRCS)) =20 --- tmux-1.2/Makefile +++ tmux-1.2/Makefile @@ -52,7 +52,7 @@ INSTALLBIN=3D install -g bin -o root -m 555 INSTALLMAN=3D install -g bin -o root -m 444 =20 -SRCS!=3D echo *.c|sed 's|osdep-[a-z0-9]*.c||g' +SRCS!=3D echo *.c|LC_ALL=3DC sed 's|osdep-[a-z0-9]*.c||g' .include "config.mk" OBJS=3D ${SRCS:S/.c/.o/} =20