Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: "Jason A. Donenfeld" <Jason@×××××.com>, dev-portage@g.o
Subject: [gentoo-dev] Re: [PATCH] eapply_user: allow empty directories
Date: Sun, 06 Mar 2016 23:33:56
Message-Id: 22236.48725.114876.605888@a1i15.kph.uni-mainz.de
1 >>>>> On Sun, 6 Mar 2016, Jason A. Donenfeld wrote:
2
3 >> --- a/bin/phase-helpers.sh
4 >> +++ b/bin/phase-helpers.sh
5 >> @@ -1089,6 +1089,10 @@ if ___eapi_has_eapply_user; then
6 >> local basedir=${PORTAGE_CONFIGROOT%/}/etc/portage/patches
7 >>
8 >> local d applied
9 >> + local LC_ALL=POSIX
10 >> + local prev_shopt=$(shopt -p nullglob)
11 >> + shopt -s nullglob
12
13 Why is LC_ALL=POSIX needed there?
14
15 Ulrich