Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kbuild-fixes-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

- Fix kernel-devel RPM and linux-headers Deb package

- Fix too long argument list error in 'make modules_install'

* tag 'kbuild-fixes-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kbuild: avoid long argument lists in make modules_install
kbuild: fix kernel-devel RPM package and linux-headers Deb package

+2 -2
+1 -1
scripts/Makefile.modinst
··· 113 113 endif 114 114 115 115 # Create necessary directories 116 - $(shell mkdir -p $(sort $(dir $(install-y)))) 116 + $(foreach dir, $(sort $(dir $(install-y))), $(shell mkdir -p $(dir))) 117 117 118 118 $(dst)/%.ko: $(extmod_prefix)%.ko FORCE 119 119 $(call cmd,install)
+1 -1
scripts/package/install-extmod-build
··· 20 20 find "arch/${SRCARCH}" -maxdepth 1 -name 'Makefile*' 21 21 find include scripts -type f -o -type l 22 22 find "arch/${SRCARCH}" -name Kbuild.platforms -o -name Platform 23 - find "$(find "arch/${SRCARCH}" -name include -o -name scripts -type d)" -type f 23 + find "arch/${SRCARCH}" -name include -o -name scripts -type d 24 24 ) | tar -c -f - -C "${srctree}" -T - | tar -xf - -C "${destdir}" 25 25 26 26 {