Subversion Repositories DevTools

Rev

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

Rev 7300 Rev 7307
Line 824... Line 824...
824
 
824
 
825
    #
825
    #
826
    #   Support sandbox specific buildfilter
826
    #   Support sandbox specific buildfilter
827
    #   Remove comments(#) and empty lines
827
    #   Remove comments(#) and empty lines
828
    #
828
    #
829
    if ( $GBE_SANDBOX && -f $GBE_DPKG_SBOX . '/buildfilter' )
829
    my $sbBuildFilter = $GBE_DPKG_SBOX . '/buildfilter';
-
 
830
    if ( $GBE_SANDBOX && -f $sbBuildFilter )
830
    {
831
    {
-
 
832
        Verbose("sbBuildFilter:$sbBuildFilter");
831
        if ( open (my $BF, $GBE_DPKG_SBOX . '/buildfilter' ))
833
        if ( open (my $BF, $sbBuildFilter ))
832
        {
834
        {
833
            my @bf;
835
            my @bf;
834
            while ( <$BF> )
836
            while ( <$BF> )
835
            {
837
            {
836
                s~\s$~~;
838
                s~\s$~~;