Subversion Repositories DevTools

Rev

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

Rev 5073 Rev 5619
Line 696... Line 696...
696
        #   Is the build limited to only debug or production
696
        #   Is the build limited to only debug or production
697
        #
697
        #
698
        unless ( $commands{$cmd}{'common'} & 1 )
698
        unless ( $commands{$cmd}{'common'} & 1 )
699
        {
699
        {
700
            if ( $do_debug == 0 ) {
700
            if ( $do_debug == 0 ) {
701
                next unless ( $Tags->{$dir}{platforms}{$target}{prod} );
701
                unless ( $Tags->{$dir}{platforms}{$target}{prod} )
-
 
702
                {
-
 
703
                    Verbose("Skip debug build in Production Only build");
-
 
704
                    next;
-
 
705
                }
702
 
706
 
703
            } elsif  ( $do_debug == 1 ) {
707
            } elsif  ( $do_debug == 1 ) {
704
                next unless ( $Tags->{$dir}{platforms}{$target}{debug} );
708
                unless ( $Tags->{$dir}{platforms}{$target}{debug} )
-
 
709
                {
-
 
710
                    Verbose("Skip prod build in Debug Only build");
-
 
711
                    next;
-
 
712
                }
705
            }
713
            }
706
        }
714
        }
707
 
715
 
708
        #
716
        #
709
        #   Final sanity test
717
        #   Final sanity test