Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gentoo-headers: rip-headers.sh
Date: Tue, 01 Sep 2015 02:38:09
Message-Id: 20150901023806.C7743181@oystercatcher.gentoo.org
1 vapier 15/09/01 02:38:06
2
3 Modified: rip-headers.sh
4 Log:
5 pull in x86 dirs starting w/4.2
6
7 Revision Changes Path
8 1.14 src/patchsets/gentoo-headers/rip-headers.sh
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?rev=1.14&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?rev=1.14&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?r1=1.13&r2=1.14
13
14 Index: rip-headers.sh
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/src/patchsets/gentoo-headers/rip-headers.sh,v
17 retrieving revision 1.13
18 retrieving revision 1.14
19 diff -u -r1.13 -r1.14
20 --- rip-headers.sh 14 Apr 2015 22:15:43 -0000 1.13
21 +++ rip-headers.sh 1 Sep 2015 02:38:06 -0000 1.14
22 @@ -60,6 +60,11 @@
23 done
24 fi
25 done
26 +# handle x86 unique cruft
27 +if [[ -e ${src}/arch/x86/entry/syscalls ]] ; then
28 + mkdir -p ${dst}/arch/x86/entry
29 + cp -r ${src}/arch/x86/entry/syscalls ${dst}/arch/x86/entry/
30 +fi
31 # mips has some stupid unique bs
32 if [[ -e ${src}/arch/mips/Kbuild.platforms ]] ; then
33 for f in "${src}"/arch/mips/*/Platform ; do