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

Pablo Fischer pabl0-guest@haydn.debian.org
Mon, 14 Jun 2004 23:11:07 -0600


Author: pabl0-guest
Date: 2004-06-14 23:10:59 -0600 (Mon, 14 Jun 2004)
New Revision: 1008

Modified:
   mono/trunk/debian/dh_installxsp
Log:
Fixed a BIG BUG.

dh_installxsp was keeping as executable the /etc/xsp/ and /etc/mono-server files.




Modified: mono/trunk/debian/dh_installxsp
===================================================================
--- mono/trunk/debian/dh_installxsp	2004-06-14 22:41:13 UTC (rev 1007)
+++ mono/trunk/debian/dh_installxsp	2004-06-15 05:10:59 UTC (rev 1008)
@@ -46,7 +46,7 @@
 	    if( ! -d "$tmp/etc/xsp/conf.d/".pkgfilename($package)) {
 		doit("install","-d","$tmp/etc/xsp/conf.d/".pkgfilename($package));
 	    }
-	    doit("install",$hostfile,"$tmp/etc/xsp/conf.d/".pkgfilename($package)."/10_".pkgfilename($package));
+	    doit("install","-m",644,$hostfile,"$tmp/etc/xsp/conf.d/".pkgfilename($package)."/10_".pkgfilename($package));
 
 	    if( ! -d "$tmp/etc/mono-server/conf.d" ) {
 		doit("install","-d","$tmp/etc/mono-server/conf.d");
@@ -55,7 +55,7 @@
 		doit("install","-d","$tmp/etc/mono-server/conf.d/".pkgfilename($package));
 	    }
 	    
-	    doit("install",$hostfile,"$tmp/etc/mono-server/conf.d/".pkgfilename($package)."/10_".pkgfilename($package));
+	    doit("install","-m",644,$hostfile,"$tmp/etc/mono-server/conf.d/".pkgfilename($package)."/10_".pkgfilename($package));
 
 	    if ($hostfile ne '') {
                 if (! $dh{NOSCRIPTS}) {