[Pkg-mono-svn-commits] rev 2685 - in cli-common/trunk: . debian

Mirco Bauer meebey-guest at costa.debian.org
Sun Aug 27 13:16:39 UTC 2006


Author: meebey-guest
Date: 2006-08-27 13:16:38 +0000 (Sun, 27 Aug 2006)
New Revision: 2685

Modified:
   cli-common/trunk/cli-policy.sgml
   cli-common/trunk/debian/changelog
   cli-common/trunk/dh_clifixperms
Log:
- fixed dh_clifixperms



Modified: cli-common/trunk/cli-policy.sgml
===================================================================
--- cli-common/trunk/cli-policy.sgml	2006-08-26 10:53:18 UTC (rev 2684)
+++ cli-common/trunk/cli-policy.sgml	2006-08-27 13:16:38 UTC (rev 2685)
@@ -175,7 +175,7 @@
 
       <p>
         If you really want to use the ".NET" term in a correct form please refer to the
-        <url id="http://www.microsoft.com/mscorp/ip/trademarks/netguide.asp" name="Microsoft .NET Guidelines">.
+        <url id="http://www.microsoft.com/about/legal/intellectualproperty/trademarks/usage/net.mspx" name="Microsoft .NET Guidelines">.
       </p>
     </sect>
 

Modified: cli-common/trunk/debian/changelog
===================================================================
--- cli-common/trunk/debian/changelog	2006-08-26 10:53:18 UTC (rev 2684)
+++ cli-common/trunk/debian/changelog	2006-08-27 13:16:38 UTC (rev 2685)
@@ -1,7 +1,10 @@
 cli-common (0.4.4) unstable; urgency=low
 
+  * NOT RELEASED YET
   * Dylan R. E. Moonfire
     + Created dh_clifixperms to easily correct file permissions.
+  * Mirco 'meebey Bauer
+    + Updated link in the CLI Policy for MS .NET term usage.
 
  -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Thu, 20 Jul 2006 19:28:07 -0500
 

Modified: cli-common/trunk/dh_clifixperms
===================================================================
--- cli-common/trunk/dh_clifixperms	2006-08-26 10:53:18 UTC (rev 2684)
+++ cli-common/trunk/dh_clifixperms	2006-08-27 13:16:38 UTC (rev 2685)
@@ -19,8 +19,8 @@
 the permissions of files and directories for CLI assemblies and
 executables.
 
-dh_clifixperms makes all files that end in *.exe, *.dll, *.mdb, *.cs,
-*.aspx, and *.config to mode 644.
+dh_clifixperms makes all files that end in *.dll, *.mdb, *.cs,
+*.aspx, and *.config to mode 644 and *.exe to mode 755.
 
 =head1 OPTIONS
 
@@ -47,11 +47,13 @@
 	}
 
 	# Fix the permissions of various CLI-based files
-	for my $ext (qw(dll mdb cs config exe aspx))
+	for my $ext (qw(dll mdb cs config aspx))
 	{
 	    complex_doit("find $tmp $find_options -name \"*.$ext\" -print0",
 			 "2>/dev/null | xargs -0r chmod 0644");
 	}
+	complex_doit("find $tmp $find_options -name \"*.exe\" -print0",
+		     "2>/dev/null | xargs -0r chmod 0755");
 }
 
 =head1 SEE ALSO




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