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 branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild

Pull kbuild fixes from Michal Marek:
"There are two more kbuild fixes for 3.6.

One fixes a race between x86's archscripts target and the rule
(re)building scripts/basic/fixdep. The second is a fix for the
previous attempt at fixing make firmware_install with make 3.82.
This new solution should work with any version of GNU make"

* 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
x86/kbuild: archscripts depends on scripts_basic
firmware: fix directory creation rule matching with make 3.80

+3 -3
+1 -1
arch/x86/Makefile
··· 142 142 KBUILD_CFLAGS += $(mflags-y) 143 143 KBUILD_AFLAGS += $(mflags-y) 144 144 145 - archscripts: 145 + archscripts: scripts_basic 146 146 $(Q)$(MAKE) $(build)=arch/x86/tools relocs 147 147 148 148 ###
+2 -2
scripts/Makefile.fwinst
··· 27 27 installed-mod-fw := $(addprefix $(INSTALL_FW_PATH)/,$(mod-fw)) 28 28 29 29 installed-fw := $(addprefix $(INSTALL_FW_PATH)/,$(fw-shipped-all)) 30 - installed-fw-dirs := $(sort $(dir $(installed-fw))) $(INSTALL_FW_PATH)/. 30 + installed-fw-dirs := $(sort $(dir $(installed-fw))) $(INSTALL_FW_PATH)/./ 31 31 32 32 # Workaround for make < 3.81, where .SECONDEXPANSION doesn't work. 33 33 PHONY += $(INSTALL_FW_PATH)/$$(%) install-all-dirs ··· 42 42 $(installed-fw-dirs): 43 43 $(call cmd,mkdir) 44 44 45 - $(installed-fw): $(INSTALL_FW_PATH)/%: $(obj)/% | $$(dir $(INSTALL_FW_PATH)/%) 45 + $(installed-fw): $(INSTALL_FW_PATH)/%: $(obj)/% | $(INSTALL_FW_PATH)/$$(dir %) 46 46 $(call cmd,install) 47 47 48 48 PHONY += __fw_install __fw_modinst FORCE