mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
* 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: script/checkpatch.pl: warn about deprecated use of EXTRA_{A,C,CPP,LD}FLAGS tags, powerpc: Update tags.sh to support _GLOBAL symbols scripts: add extract-vmlinux
This commit is contained in:
commit
addd8c92cf
3 changed files with 78 additions and 2 deletions
|
@ -1683,6 +1683,20 @@ sub process {
|
|||
#print "is_end<$is_end> length<$length>\n";
|
||||
}
|
||||
|
||||
if (($realfile =~ /Makefile.*/ || $realfile =~ /Kbuild.*/) &&
|
||||
($line =~ /\+(EXTRA_[A-Z]+FLAGS).*/)) {
|
||||
my $flag = $1;
|
||||
my $replacement = {
|
||||
'EXTRA_AFLAGS' => 'asflags-y',
|
||||
'EXTRA_CFLAGS' => 'ccflags-y',
|
||||
'EXTRA_CPPFLAGS' => 'cppflags-y',
|
||||
'EXTRA_LDFLAGS' => 'ldflags-y',
|
||||
};
|
||||
|
||||
WARN("DEPRECATED_VARIABLE",
|
||||
"Use of $flag is deprecated, please use \`$replacement->{$flag} instead.\n" . $herecurr) if ($replacement->{$flag});
|
||||
}
|
||||
|
||||
# check we are in a valid source file if not then ignore this hunk
|
||||
next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue