source: app/dist/common/check_dependenties.pl @ 4518a0b

Last change on this file since 4518a0b was 317d53b, checked in by pawelk <pawelk@…>, 16 years ago

Dodalem skrypty, zwiazane z obsluga zaleznosci w tarballu.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@22 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 179 bytes
Line 
1
2while(<STDIN>) {
3        chomp;
4        $app = $_;
5        $path = `which $app 2>/dev/null`;
6        $err = $?;
7        print $app.": ";
8        if($err != 0) {
9                print "failed ($err)\n";
10        }
11        else {
12                print $path;
13        }
14}
15
Note: See TracBrowser for help on using the repository browser.