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

Sebastian Dröge slomo-guest at costa.debian.org
Tue Jul 11 16:56:09 UTC 2006


Author: slomo-guest
Date: 2006-07-11 16:56:07 +0000 (Tue, 11 Jul 2006)
New Revision: 2624

Modified:
   mono/trunk/debian/changelog
   mono/trunk/debian/mono.runtime-script
Log:
* small fix for the mono runtime script


Modified: mono/trunk/debian/changelog
===================================================================
--- mono/trunk/debian/changelog	2006-07-10 21:48:32 UTC (rev 2623)
+++ mono/trunk/debian/changelog	2006-07-11 16:56:07 UTC (rev 2624)
@@ -1,3 +1,12 @@
+mono (1.1.13.8-2) unstable; urgency=low
+
+  * Sebastian 'slomo' Dröge:
+    + debian/mono.runtime-script:
+      - don't fail on removal if an assembly can't be removed. This is most
+        likely the case because the assembly is already gone.
+
+ -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Tue, 11 Jul 2006 18:54:42 +0200
+
 mono (1.1.13.8-1) unstable; urgency=low
 
   * Mirco 'meebey' Bauer:

Modified: mono/trunk/debian/mono.runtime-script
===================================================================
--- mono/trunk/debian/mono.runtime-script	2006-07-10 21:48:32 UTC (rev 2623)
+++ mono/trunk/debian/mono.runtime-script	2006-07-11 16:56:07 UTC (rev 2624)
@@ -63,7 +63,8 @@
 	    chomp;
 		 my $cmd = "/usr/bin/mono /usr/lib/mono/1.0/gacutil.exe /u $_"
 		 . " > /dev/null";
-		 system($cmd) == 0 or die "E: removing Assembly $_ failed\n";
+		 system($cmd) == 0 or
+		 	print STDERR "W: removing Assembly $_ failed!\n";
 	}
 
 	close UNINSTALL;




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