summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2005-05-09 17:20:11 +0000
committerTim Yamin <plasmaroo@gentoo.org>2005-05-09 17:20:11 +0000
commitda2657ee8a0b3ebd69835662ad43741a5ef1b79a (patch)
tree98c34c5f7a91bfabc8e31e030a7aa88d2583f412 /eclass
parentStable on ppc. (diff)
downloadgentoo-2-da2657ee8a0b3ebd69835662ad43741a5ef1b79a.tar.gz
gentoo-2-da2657ee8a0b3ebd69835662ad43741a5ef1b79a.tar.bz2
gentoo-2-da2657ee8a0b3ebd69835662ad43741a5ef1b79a.zip
Fix #90261.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kernel-2.eclass9
1 files changed, 3 insertions, 6 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index f2832363b0e1..70ac53726270 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.123 2005/04/30 11:42:30 dsd Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.124 2005/05/09 17:20:11 plasmaroo Exp $
# Description: kernel.eclass rewrite for a clean base regarding the 2.6
# series of kernel with back-compatibility for 2.4
@@ -849,13 +849,10 @@ headers___fix() {
# Voodoo to partially fix broken upstream headers.
# Issues with this function should go to plasmaroo.
sed -i \
- -e "s/\([ "$'\t'"]\)u8\([ "$'\t'"]\)/\1__u8\2/g;" \
- -e "s/\([ "$'\t'"]\)u16\([ "$'\t'"]\)/\1__u16\2/g;" \
- -e "s/\([ "$'\t'"]\)u32\([ "$'\t'"]\)/\1__u32\2/g;" \
- -e "s/\([ "$'\t'"]\)u64\([ "$'\t'"]\)/\1__u64\2/g;" \
- -e "s/\([ "$'\t'"]\)s64\([ "$'\t'"]\)/\1__s64\2/g;" \
+ -e "s/\([ "$'\t'"]\)\(u\|s\)\(8\|16\|32\|64\)\([ "$'\t'"]\)/\1__\2\3\4/g;" \
-e 's/ \(u\|s\)\(8\|16\|32\|64\)$/ __\1\2/g' \
-e 's/\([(, ]\)\(u\|s\)64\([, )]\)/\1__\264\3/g' \
+ -e "s/^\(u\|s\)\(8\|16\|32\|64\)\([ "$'\t'"]\)/__\1\2\3/g;" \
"$@"
}