Bug 391308 - Ship the .tar.bz2 SDK for mac, r=cf

git-svn-id: svn://10.0.0.236/trunk@232122 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
benjamin%smedbergs.us 2007-08-15 16:12:56 +00:00
parent 062e921d54
commit 44df6f2bc0

View File

@ -435,8 +435,13 @@ sub packit {
TinderUtils::print_log("No files to copy\n");
}
# Also copy any built ZIP archives (such as SDK)
TinderUtils::run_shell_command("cp $package_location/../*.zip $stagedir/");
# Also copy any built archives (such as SDK)
if (glob "$package_location/../*.zip") {
TinderUtils::run_shell_command("cp $package_location/../*.zip $stagedir/");
}
if (glob "$package_location/../*.tar.*") {
TinderUtils::run_shell_command("cp $package_location/../*.tar.* $stagedir/");
}
if ( scalar(@xforms_xpi) gt 0 ) {
my $xforms_xpi_files = join(' ', @xforms_xpi);