Subversion Repositories DevTools

Rev

Rev 7326 | Rev 7441 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7326 Rev 7437
Line 898... Line 898...
898
                #   Scan the build files and extract dependancy information
898
                #   Scan the build files and extract dependancy information
899
                #
899
                #
900
                my $bscanner = BuildFileScanner( $pname, 'build.pl',
900
                my $bscanner = BuildFileScanner( $pname, 'build.pl',
901
                                                         '--LocateAll',
901
                                                         '--LocateAll',
902
                                                         '--LimitDepth=' . $scanDepth,
902
                                                         '--LimitDepth=' . $scanDepth,
903
                                                         '--ScanDependencies', 
903
                                                         $opt_exact ? '--ScanExactDependencies' : '--ScanDependencies',
904
                                                         '--Stop' );
904
                                                         '--Stop' );
905
                unless ($bscanner->setLocation($_)) {
905
                unless ($bscanner->setLocation($_)) {
906
                    Verbose("Build file missing: Force full scan");
906
                    Verbose("Build file missing: Force full scan");
907
                    @build_list = ();
907
                    @build_list = ();
908
                    last;
908
                    last;
Line 951... Line 951...
951
            #   Scan the build files and extract dependancy information
951
            #   Scan the build files and extract dependancy information
952
            #
952
            #
953
            my $bscanner = BuildFileScanner( $pname, 'build.pl',
953
            my $bscanner = BuildFileScanner( $pname, 'build.pl',
954
                                                     '--LocateAll',
954
                                                     '--LocateAll',
955
                                                     '--LimitDepth=' . $scanDepth,
955
                                                     '--LimitDepth=' . $scanDepth,
956
                                                     '--ScanDependencies',
956
                                                     $opt_exact ? '--ScanExactDependencies' : '--ScanDependencies',
957
                                                     '--Stop' );
957
                                                     '--Stop' );
958
            $bscanner->scan();
958
            $bscanner->scan();
959
            my @blist = $bscanner->getInfo();
959
            my @blist = $bscanner->getInfo();
960
            unless ($quiet) {
960
            unless ($quiet) {
961
                Warning ("Package does not have build files: $pname") unless ( @blist );
961
                Warning ("Package does not have build files: $pname") unless ( @blist );