Subversion Repositories DevTools

Rev

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

Rev 6133 Rev 6177
Line 1... Line 1...
1
########################################################################
1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
#
3
#
4
# Module name   : jats.sh
4
# Module name   : jats.sh
5
# Module type   : Makefile system
5
# Module type   : Makefile system
6
# Compiler(s)   : n/a
6
# Compiler(s)   : n/a
7
# Environment(s): jats
7
# Environment(s): jats
Line 255... Line 255...
255
        if ( -d $_)
255
        if ( -d $_)
256
        {
256
        {
257
            #
257
            #
258
            #   Skip known dirs
258
            #   Skip known dirs
259
            #   
259
            #   
260
            if ($file eq '.git' || $file eq '.svn')
260
            if ($file eq '.git' || $file eq '.svn' || $file eq 'lost+found')
261
            {
261
            {
262
                $File::Find::prune = 1;
262
                $File::Find::prune = 1;
263
                Verbose3( "locateBuildFile: PRUNE: $file");
263
                Verbose3( "locateBuildFile: PRUNE: $file");
264
                return;
264
                return;
265
            }
265
            }
266
 
266
 
267
            #
267
            #
268
            #   Limit the depth of the scan
268
            #   Limit the depth of the scan
269
            #       Suggestion 3 below the package base
269
            #       Suggestion 3 or 4 below the package base
270
            #
270
            #
271
            if ($self->{LimitDepth})
271
            if ($self->{LimitDepth})
272
            {
272
            {
273
                my $depth = $File::Find::name =~ tr~/~/~;
273
                my $depth = $File::Find::name =~ tr~/~/~;
274
                if ($depth >= $self->{LimitDepth})
274
                if ($depth >= $self->{LimitDepth})