When Dependencies tries to get blacklisted programs from /S/S/S/Dependencies.blacklist, it get confused if this file has comments, i fixed that by replacing a "cat" with an "awk" command, here the changes:
--- /Users/eof/Depot/srcs/GoboCVS/tools/Scripts/bin/Dependencies 2007-03-30 10:48:51.000000000 +0200 +++ /Programs/Scripts/CVS/bin/Dependencies 2007-03-31 19:11:17.000000000 +0200 @@ -85,7 +85,7 @@ blacklist=("do_not_match") if [ "$blacklistfile" ] then - for app in `cat "$blacklistfile"` + for app in `awk '/^[^#.*]/ {print $0}' "$blacklistfile"` do blacklist=("[EMAIL PROTECTED]" "^$app ") done fi @@ -273,6 +273,7 @@ fi fi done + for p in "[EMAIL PROTECTED]" do $execute $p Sorry if i make some typos i'm writting only with a hand, i can't use my left one :) greets. Aitor. -- ... Bardulia quae nunc vocatur Castella ... _______________________________________________ gobolinux-devel mailing list gobolinux-devel@lists.gobolinux.org http://lists.gobolinux.org/mailman/listinfo/gobolinux-devel