summaryrefslogtreecommitdiff
path: root/scripts
authorclem <clem>2004-10-14 17:35:52 (UTC)
committer clem <clem>2004-10-14 17:35:52 (UTC)
commitf8c4607b5fb51b071196020fbd3ca70012d9085a (patch) (side-by-side diff)
treee41f8a6d290114aed1ff6cbc484f16da2980f80e /scripts
parentfbcb3efe673fc6c956cbdae7cf6fb83a637dfc5e (diff)
downloadopie-f8c4607b5fb51b071196020fbd3ca70012d9085a.zip
opie-f8c4607b5fb51b071196020fbd3ca70012d9085a.tar.gz
opie-f8c4607b5fb51b071196020fbd3ca70012d9085a.tar.bz2
fixed a bug where depends would be ignored for every package that had 'config' or 'menu' in its description! now noncore/settings/tabmanager, libopie2/opiecore, core/applets/lockapplet and noncore/settings/mediummount have correct depends, and make -j 10 won't choke on lockapplet or libopie2core being built before libqpe
Diffstat (limited to 'scripts') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/deps.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deps.pl b/scripts/deps.pl
index a219e36..21f816b 100755
--- a/scripts/deps.pl
+++ b/scripts/deps.pl
@@ -18,7 +18,7 @@ sub getdepends ($$)
while( <FILE> ) {
if( $intoken == 1 ) {
/depends\S*(.*)/ && return $1;
- if( /\S*(config|menu)/ ) {
+ if( /^\s*(config|menu)/ ) {
$intoken = 0;
return;
}