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.

kbuild: do not sort after reading modules.order

modules.order lists modules in the deterministic order (that is why
"modules order"), and there is no duplication in the list.

$(sort ) is pointless.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>

+2 -2
+1 -1
scripts/Makefile.modfinal
··· 13 13 include $(srctree)/scripts/Makefile.lib 14 14 15 15 # find all modules listed in modules.order 16 - modules := $(sort $(shell cat $(MODORDER))) 16 + modules := $(shell cat $(MODORDER)) 17 17 18 18 __modfinal: $(modules) 19 19 @:
+1 -1
scripts/Makefile.modinst
··· 9 9 include include/config/auto.conf 10 10 include $(srctree)/scripts/Kbuild.include 11 11 12 - modules := $(sort $(shell cat $(MODORDER))) 12 + modules := $(shell cat $(MODORDER)) 13 13 14 14 ifeq ($(KBUILD_EXTMOD),) 15 15 dst := $(MODLIB)/kernel