summaryrefslogtreecommitdiff
path: root/scripts/deps.pl
authorkergoth <kergoth>2002-11-29 18:59:06 (UTC)
committer kergoth <kergoth>2002-11-29 18:59:06 (UTC)
commitbd692f7ebe04e23151cce39baf311b925ccf91b1 (patch) (side-by-side diff)
treed573648934c2aa230a44ebecac29f3af097dd381 /scripts/deps.pl
parentbd0a4c6311c55370fa7e00255f919537d81801dc (diff)
downloadopie-bd692f7ebe04e23151cce39baf311b925ccf91b1.zip
opie-bd692f7ebe04e23151cce39baf311b925ccf91b1.tar.gz
opie-bd692f7ebe04e23151cce39baf311b925ccf91b1.tar.bz2
Silence some of those annoying errors in dependency generation
Diffstat (limited to 'scripts/deps.pl') (more/less context) (ignore 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
@@ -46,10 +46,14 @@ sub makedepends ($$)
/\&\&/ && 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";