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

kbuild: make versioncheck work in KBUILD_OUTDIR

This patch fixes the versioncheck target so it works when make is
invoked in KBUILD_OUTDIR.

Signed-off-by: Peter Foley <pefoley2@verizon.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>

authored by

Peter Foley and committed by
Michal Marek
2ee2d292 436f876c

+1 -1
+1 -1
Makefile
··· 1401 1401 | xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl 1402 1402 1403 1403 versioncheck: 1404 - find * $(RCS_FIND_IGNORE) \ 1404 + find $(srctree)/* $(RCS_FIND_IGNORE) \ 1405 1405 -name '*.[hcS]' -type f -print | sort \ 1406 1406 | xargs $(PERL) -w $(srctree)/scripts/checkversion.pl 1407 1407