aboutsummaryrefslogtreecommitdiff
path: root/patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-23 17:08:09 +0000
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-23 17:08:09 +0000
commitb1e693e40281dc8c451e8892dfcdf55d78a4ade3 (patch)
treec276bc44f23b42895b459efbf2597f4bef378819 /patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch
parent3ad6464ffe38eb15591b404e0749aa89f4074fd1 (diff)
downloadcrosstool-ng-b1e693e40281dc8c451e8892dfcdf55d78a4ade3.tar.gz
crosstool-ng-b1e693e40281dc8c451e8892dfcdf55d78a4ade3.tar.bz2
crosstool-ng-b1e693e40281dc8c451e8892dfcdf55d78a4ade3.zip
Renamed all patches file names so that locales are now irrelevant to sort the files.
Removed the locale check as it is now irrelevant. Removed the experimental binutils 2.17.50.0.xx: 2.18 is here now.
Diffstat (limited to 'patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch')
-rw-r--r--patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch b/patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch
deleted file mode 100644
index 60c68eff..00000000
--- a/patches/linux/2.4.26/linux-2.4.26-mkdep-xargs.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-About ten times, various people have noticed that 'make dep' uses
-really, really long commandlines. This breaks sh even on linux sometimes.
-
-For 2.4, see e.g.
-http://marc.theaimsgroup.com/?l=linux-kernel&m=96589814004919&w=2
-http://marc.theaimsgroup.com/?l=linux-kernel&m=96589814004919&q=p3
-http://www.xraylith.wisc.edu/~khan/software/gnu-win32/cygwin-to-linux-cross-howto.txt
-http://www.uclinux.org/pub/uClinux/archive/1728.html
-
-Fixes error when building linux kernel for some default arm configurations:
-
-scripts/mkdep -- `find /home/dank/wk/crosstool-0.28-rc36/build/arm-unknown-linux-gnu/gcc-3.3.4-glibc-2.3.2/linux-2.4.26/include/asm /home/dank/wk/crosstool-0.28-rc36/build/arm-unknown-linux-gnu/gcc-3.3.4-glibc-2.3.2/linux-2.4.26/include/linux /home/dank/wk/crosstool-0.28-rc36/build/arm-unknown-linux-gnu/gcc-3.3.4-glibc-2.3.2/linux-2.4.26/include/scsi /home/dank/wk/crosstool-0.28-rc36/build/arm-unknown-linux-gnu/gcc-3.3.4-glibc-2.3.2/linux-2.4.26/include/net /home/dank/wk/crosstool-0.28-rc36/build/arm-unknown-linux-gnu/gcc-3.3.4-glibc-2.3.2/linux-2.4.26/include/math-emu \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend
-/bin/sh: line 1: scripts/mkdep: Argument list too long
-make: *** [dep-files] Error 126
-
-[ For linux-2.4.26 ]
-
---- linux-2.4.26/Makefile.old 2004-04-14 06:05:41.000000000 -0700
-+++ linux-2.4.26/Makefile 2004-09-13 21:27:39.000000000 -0700
-@@ -500,7 +500,7 @@
- ifdef CONFIG_MODVERSIONS
- $(MAKE) update-modverfile
- endif
-- scripts/mkdep -- `find $(FINDHPATH) \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` > .hdepend
-+ find $(FINDHPATH) \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print | xargs scripts/mkdep | cat > .hdepend
- scripts/mkdep -- init/*.c > .depend
-
- ifdef CONFIG_MODVERSIONS