Skip to content

Commit

Permalink
kbuild: Add missing srctree prefix for includecheck and versioncheck
Browse files Browse the repository at this point in the history
Add missing $(srctree)/ prefix for scripts used by the includecheck and
versioncheck make targets

Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
  • Loading branch information
Geert Uytterhoeven authored and Sam Ravnborg committed Jan 28, 2008
1 parent aa025e7 commit 8000743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1430,12 +1430,12 @@ tags: FORCE
includecheck:
find * $(RCS_FIND_IGNORE) \
-name '*.[hcS]' -type f -print | sort \
| xargs $(PERL) -w scripts/checkincludes.pl
| xargs $(PERL) -w $(srctree)/scripts/checkincludes.pl

versioncheck:
find * $(RCS_FIND_IGNORE) \
-name '*.[hcS]' -type f -print | sort \
| xargs $(PERL) -w scripts/checkversion.pl
| xargs $(PERL) -w $(srctree)/scripts/checkversion.pl

namespacecheck:
$(PERL) $(srctree)/scripts/namespace.pl
Expand Down

0 comments on commit 8000743

Please sign in to comment.