diff options
author | 2004-08-25 20:44:54 +0000 | |
---|---|---|
committer | 2004-08-25 20:44:54 +0000 | |
commit | 94f32f141f1eba2ec9f4c1954ab41c3e0af6e777 (patch) | |
tree | 3078dfd37e7905ee1240713206cf24ab7f0de3ee /eclass | |
parent | version bump (bug #61600) (diff) | |
download | historical-94f32f141f1eba2ec9f4c1954ab41c3e0af6e777.tar.gz historical-94f32f141f1eba2ec9f4c1954ab41c3e0af6e777.tar.bz2 historical-94f32f141f1eba2ec9f4c1954ab41c3e0af6e777.zip |
fixes bug 59292 & possibly 61487
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 7c9603af63b2..d2cd9bb51f63 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.41 2004/08/22 11:38:02 johnm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.42 2004/08/25 20:44:54 johnm Exp $ # kernel.eclass rewrite for a clean base regarding the 2.6 series of kernel # with back-compatibility for 2.4 @@ -487,6 +487,7 @@ unipatch() { done # and now, finally, we patch it :) + LC_ALL="C" for x in ${KPATCH_DIR} do for i in $(find ${x} -maxdepth 1 -iregex ".*\.patch[0-9]*" -or -iname "*.diff" | sort -n) @@ -534,6 +535,7 @@ unipatch() { fi done done + unset LC_ALL } # custom functions |