Commit 2ee2d29289951b4cb7578d75f199e4aa4084fe6f

Authored by Peter Foley
Committed by Michal Marek
1 parent 436f876ccb

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1401,7 +1401,7 @@
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