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>
This commit is contained in:
parent
436f876ccb
commit
2ee2d29289
2
Makefile
2
Makefile
|
@ -1401,7 +1401,7 @@ includecheck:
|
||||||
| xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
|
| xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl
|
||||||
|
|
||||||
versioncheck:
|
versioncheck:
|
||||||
find * $(RCS_FIND_IGNORE) \
|
find $(srctree)/* $(RCS_FIND_IGNORE) \
|
||||||
-name '*.[hcS]' -type f -print | sort \
|
-name '*.[hcS]' -type f -print | sort \
|
||||||
| xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
|
| xargs $(PERL) -w $(srctree)/scripts/checkversion.pl
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue