[Pkg-mono-svn-commits] rev 3408 - mono/trunk/debian

Mirco Bauer meebey-guest at alioth.debian.org
Sun Oct 28 18:57:12 UTC 2007


Author: meebey-guest
Date: 2007-10-28 18:57:11 +0000 (Sun, 28 Oct 2007)
New Revision: 3408

Modified:
   mono/trunk/debian/changelog
   mono/trunk/debian/mono.runtime-script
Log:
- cosmetic fix



Modified: mono/trunk/debian/changelog
===================================================================
--- mono/trunk/debian/changelog	2007-10-28 13:13:46 UTC (rev 3407)
+++ mono/trunk/debian/changelog	2007-10-28 18:57:11 UTC (rev 3408)
@@ -1,3 +1,9 @@
+mono (1.2.5.1-2) UNRELEASED; urgency=low
+
+  * NOT RELEASED YET
+
+ -- Mirco Bauer <meebey at debian.org>  Mon, 24 Sep 2007 00:32:39 +0200
+
 mono (1.2.5.1-1) unstable; urgency=low
 
   * Mirco 'meebey' Bauer:

Modified: mono/trunk/debian/mono.runtime-script
===================================================================
--- mono/trunk/debian/mono.runtime-script	2007-10-28 13:13:46 UTC (rev 3407)
+++ mono/trunk/debian/mono.runtime-script	2007-10-28 18:57:11 UTC (rev 3408)
@@ -59,12 +59,13 @@
 
 	while (<UNINSTALL>)
 	{
-	    # Clean up the line and get the base directory
-	    chomp;
-		 my $cmd = "/usr/bin/mono /usr/lib/mono/1.0/gacutil.exe /u $_"
-		 . " > /dev/null";
-		 system($cmd) == 0 or
-		 	print STDERR "W: removing Assembly $_ failed!\n";
+	    # Clean up the line
+	    my $assembly = chomp;
+	    my $cmd = "/usr/bin/mono /usr/lib/mono/1.0/gacutil.exe /u $assembly > /dev/null";
+	    my $res = system($cmd);
+	    if (!$res) {
+                print STDERR "W: removing Assembly $assembly failed!\n";
+            }
 	}
 
 	close UNINSTALL;
@@ -81,7 +82,7 @@
 if ($mode ne "install")
 {
     print STDERR "E: Unknown mode: $mode\n";
-    print STDERR "E: Use: install, remove, or name\n";
+    print STDERR "E: Use: install, remove or name\n";
     exit 1;
 }
 




More information about the Pkg-mono-svn-commits mailing list