Subversion Repositories DevTools

Rev

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

Rev 7296 Rev 7441
Line 3813... Line 3813...
3813
        return;
3813
        return;
3814
    }
3814
    }
3815
 
3815
 
3816
    #
3816
    #
3817
    #   Create a name for this package in the sandbox
3817
    #   Create a name for this package in the sandbox
3818
    #   Must use the package name and extension. Don't use the version
3818
    #       Must use the package name and extension - unless exact sandbox
3819
    #   information as this will not be correct
3819
    #       Must use packahe name, version and extension if its an exact sandbox
3820
    #
-
 
3821
    #   PACKAGE/sandbox.PRJ.cfg
-
 
3822
    #
3820
    #
3823
    my $link_dir = "$sandbox_dpkg_archive/$BUILDNAME_PACKAGE";
3821
    my $link_dir = "$sandbox_dpkg_archive/$BUILDNAME_PACKAGE";
3824
    my $base = 'sandbox' . ${BUILDNAME_SUFFIX}; 
3822
    my $base = 'sandbox' . ${BUILDNAME_SUFFIX}; 
-
 
3823
    if ($sandbox_exact) {
-
 
3824
        $base = 'sandbox.' . ${BUILDNAME_VERSION} . ${BUILDNAME_SUFFIX}; 
-
 
3825
    }
3825
 
3826
 
3826
    my $nob_path  = $base . ".nob";
3827
    my $nob_path  = $base . ".nob";
3827
    my $ffp_path  = $base . ".ffp";
3828
    my $ffp_path  = $base . ".ffp";
3828
    my $int_path  = $base . ".int";
3829
    my $int_path  = $base . ".int";
3829
 
3830