summaryrefslogtreecommitdiff
path: root/scripts/deps.pl
Side-by-side diff
Diffstat (limited to 'scripts/deps.pl') (more/less context) (show whitespace changes)
-rwxr-xr-xscripts/deps.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/deps.pl b/scripts/deps.pl
index 56c4e77..feced6e 100755
--- a/scripts/deps.pl
+++ b/scripts/deps.pl
@@ -43,16 +43,20 @@ sub makedepends ($$)
print ${$tokenpath}{$token} . " : ";
for (split(/\s+/, ${$depends}{$token})){
/^\s+$/ && next;
/\&\&/ && next;
/\|\|/ && next;
/^$/ && next;
+ /^\($/ && next;
+ /^\)$/ && next;
+ /^on$/ && next;
+ /^!$/ && next;
if(defined(${$tokenpath}{"CONFIG_" . $_})){
print '$(if $(CONFIG_' . $_ . '),' . ${$tokenpath}{"CONFIG_" . $_} . ') ';
} else {
- print STDERR "ERROR in dependency generation, unable to locate path for token CONFIG_$_\n";
+ print STDERR "Warning: unable to locate path for token CONFIG_$_\n";
}
}
print "\n";
}
}