Subversion Repositories DevTools

Rev

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

Rev 367 Rev 369
Line 362... Line 362...
362
            unless ( $targets | $products );
362
            unless ( $targets | $products );
363
 
363
 
364
        #
364
        #
365
        #   Expand the '*' into a list of platforms that are NOT products
365
        #   Expand the '*' into a list of platforms that are NOT products
366
        #
366
        #
367
        if ( $targets && defined( %::ScmBuildPlatforms ) )
367
        if ( $targets && ( %::ScmBuildPlatforms ) )
368
        {                                       # targets
368
        {                                       # targets
369
            foreach my $key (keys %::ScmBuildPlatforms) {
369
            foreach my $key (keys %::ScmBuildPlatforms) {
370
                push( @platforms, $key )
370
                push( @platforms, $key )
371
                    if (! defined( %::ScmBuildProducts ) ||
371
                    if (! ( %::ScmBuildProducts ) ||
372
                            ! scalar $::ScmBuildProducts{ $key } );
372
                            ! scalar $::ScmBuildProducts{ $key } );
373
            }
373
            }
374
        }
374
        }
375
 
375
 
376
        #
376
        #
377
        #   Expand the '*' into a list of platforms that are 'products'
377
        #   Expand the '*' into a list of platforms that are 'products'
378
        #
378
        #
379
        if ( $products && defined( %::ScmBuildProducts ) )
379
        if ( $products && ( %::ScmBuildProducts ) )
380
        {                                       # products
380
        {                                       # products
381
            foreach my $key (keys %::ScmBuildProducts) {
381
            foreach my $key (keys %::ScmBuildProducts) {
382
                push( @platforms, $key );
382
                push( @platforms, $key );
383
            }
383
            }
384
        }
384
        }