[Scummvm-cvs-logs] SF.net SVN: scummvm: [21182] scummvm/trunk/backends/symbian

anotherguest at users.sourceforge.net anotherguest at users.sourceforge.net
Thu Mar 9 07:08:01 CET 2006


Revision: 21182
Author:   anotherguest
Date:     2006-03-09 07:07:10 -0800 (Thu, 09 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21182&view=rev

Log Message:
-----------
Updated build scripts

Modified Paths:
--------------
    scummvm/trunk/backends/symbian/AdaptAllMMPs.pl
    scummvm/trunk/backends/symbian/BuildPackageUpload_AllVersions.pl
Modified: scummvm/trunk/backends/symbian/AdaptAllMMPs.pl
===================================================================
--- scummvm/trunk/backends/symbian/AdaptAllMMPs.pl	2006-03-09 14:33:07 UTC (rev 21181)
+++ scummvm/trunk/backends/symbian/AdaptAllMMPs.pl	2006-03-09 15:07:10 UTC (rev 21182)
@@ -62,7 +62,6 @@
 	"freeverb.cpp"
 ); 
 my @excludes_gui = ( 
-	"ThemeNew",
 ); 
 
 #arseModule(mmpStr,		dirStr,		ifdefArray,		[exclusionsArray])

Modified: scummvm/trunk/backends/symbian/BuildPackageUpload_AllVersions.pl
===================================================================
--- scummvm/trunk/backends/symbian/BuildPackageUpload_AllVersions.pl	2006-03-09 14:33:07 UTC (rev 21181)
+++ scummvm/trunk/backends/symbian/BuildPackageUpload_AllVersions.pl	2006-03-09 15:07:10 UTC (rev 21182)
@@ -215,7 +215,7 @@
 		print "> $Error\n";
 	}
 	print "=======================================================================================\n";
-	print "\007\007\007";
+	print "\007\007";
 }
 
 # first clean up 'initial path' by removing possible old entries (in case of aborted builds)
@@ -274,7 +274,10 @@
 	if (-e $TargetFilePath) { unlink($TargetFilePath) or PrintErrorMessage("Removing $TargetFilePath"); }
 	
 	my $Redirection = "OUT:file, ERR:".($RedirectSTDERR ? "file" : "screen");
-	PrintMessage("Building $Target ($Redirection)");
+	my $Message = "Building $Target ($Redirection)";
+	PrintMessage($Message) if (!$ReallyQuiet);
+	print("  $Message\n")  if ($ReallyQuiet);
+
 	my $OldSize = (-s $build_log_err);
 	$Redirection = ($RedirectSTDERR ? "2>> $build_log_err" : "");
 	system("abld build armi urel $Redirection >> $build_log_out");
@@ -434,13 +437,15 @@
 	PrintErrorMessage("'abld clean armi urel' exited with value " . ($? >> 8)) if ($? >> 8);	
 	
 	my $Redirection = "OUT:file, ERR:".($RedirectSTDERR ? "file" : "screen");
-	PrintMessage("Building $Package ($Redirection)");
+	my $Message = "Building $Package ($Redirection)";
+	PrintMessage($Message) if (!$ReallyQuiet);
+	print("  $Message\n")  if ($ReallyQuiet);
 
 	my $OldSize = (-s $build_log_err);
 	$Redirection = ($RedirectSTDERR ? "2>> $build_log_err" : "");
 	system("abld build armi urel $Redirection >> $build_log_out");
 	$OK = 0 if ($? >> 8);
-	print "  STDERR: ".((-s $build_log_err)-$OldSize)." bytes output written to $build_log_err\n+--------------------------------------------------------------------------------------\n" if ($OldSize != (-s $build_log_err));
+	print "  STDERR: ".((-s $build_log_err)-$OldSize)." bytes output written to $build_log_err\n+--------------------------------------------------------------------------------------\n" if ($OldSize != (-s $build_log_err) && !$ReallyQuiet);
 	PrintErrorMessage("'abld build armi urel' exited with value " . ($? >> 8)) if ($? >> 8);
 	return 0 if (!$OK); # ABLD always returns ok :( grr	
 	PrintMessage("Done.") if (!$ReallyQuiet);
@@ -594,7 +599,7 @@
 	print "+--------------------------------------------------------------------------------------\n";
 	PrintMessage("ERROR: $CurrentTarget: $msg");
 	print "\007" if (!$HaltOnError);
-	print "\007\007\007" if ($HaltOnError); # make more noise if halt-on-error
+	print "\007\007" if ($HaltOnError); # make more noise if halt-on-error
 }
 
 sub PrintMessage()


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list