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 'linux-kselftest-4.0-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest

Pull kselftest fix from Shuah Khan.

* tag 'linux-kselftest-4.0-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
selftests: Fix build failures when invoked from kselftest target

+8
+8
tools/testing/selftests/Makefile
··· 22 22 TARGETS_HOTPLUG = cpu-hotplug 23 23 TARGETS_HOTPLUG += memory-hotplug 24 24 25 + # Clear LDFLAGS and MAKEFLAGS if called from main 26 + # Makefile to avoid test build failures when test 27 + # Makefile doesn't have explicit build rules. 28 + ifeq (1,$(MAKELEVEL)) 29 + undefine LDFLAGS 30 + override MAKEFLAGS = 31 + endif 32 + 25 33 all: 26 34 for TARGET in $(TARGETS); do \ 27 35 make -C $$TARGET; \