Browse Source

Alejandro Mery <amery@geeks.cl>:

maybe i'm the only person in the world having this problem, but... here is a tested patch for a mkdep "Argument list to long" problem.


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1500 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Alejandro Mery 22 years ago
parent
commit
53bfd67432
2 changed files with 14 additions and 0 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +13
    -0
      package/base/linux24/99-mkdep-arglist-too-long.patch

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -9,6 +9,7 @@
tiny cleanups / fixes tiny cleanups / fixes
ne documentation copy fix ne documentation copy fix
- removed alsa-xmms (since xmms now includes a ALSA plugin) - removed alsa-xmms (since xmms now includes a ALSA plugin)
- Alejandro Mery: linux24 - mkdep: "Argument list too long" fix
*) 2003-09-24 (2.0.0-rc1 - 2.0.0-rc2) *) 2003-09-24 (2.0.0-rc1 - 2.0.0-rc2)

+ 13
- 0
package/base/linux24/99-mkdep-arglist-too-long.patch

@ -0,0 +1,13 @@
--- ./Makefile.orig 2003-09-23 22:19:55.000000000 -0400
+++ ./Makefile 2003-09-23 22:28:29.000000000 -0400
@@ -518,7 +518,9 @@
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
+ for x in $(FINDHPATH); do \
+ scripts/mkdep -- `find $$x \( -name SCCS -o -name .svn \) -prune -o -follow -name \*.h ! -name modversions.h -print` >> .hdepend ; \
+ done
scripts/mkdep -- init/*.c > .depend
ifdef CONFIG_MODVERSIONS

Loading…
Cancel
Save