diff options
author | joey <joey> | 1999-08-17 05:15:10 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:15:10 +0000 |
commit | 2e2caf1f612889f7862b401f73ee7af685863011 (patch) | |
tree | aee84d05ad6e91822957c52ab118ddf3fec4d0a9 /dh_installemacsen | |
parent | dfa35b90e0703738c55e8cf177d28c9c83a46aba (diff) | |
download | debhelper-2e2caf1f612889f7862b401f73ee7af685863011.tar.gz |
r213: Initial Import
Diffstat (limited to 'dh_installemacsen')
-rwxr-xr-x | dh_installemacsen | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dh_installemacsen b/dh_installemacsen index 778720a1..f271338f 100755 --- a/dh_installemacsen +++ b/dh_installemacsen @@ -24,21 +24,21 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if (! -d "$TMP/usr/lib/emacsen-common/packages/install") { doit("install","-d","$TMP/usr/lib/emacsen-common/packages/install"); } - doit("install",$emacsen_install,"$TMP/usr/lib/emacsen-common/packages/install/$PACKAGE"); + doit("install","-m0644",$emacsen_install,"$TMP/usr/lib/emacsen-common/packages/install/$PACKAGE"); } if ($emacsen_remove ne '') { if (! -d "$TMP/usr/lib/emacsen-common/packages/remove") { doit("install","-d","$TMP/usr/lib/emacsen-common/packages/remove"); } - doit("install","$emacsen_remove","$TMP/usr/lib/emacsen-common/packages/remove/$PACKAGE"); + doit("install","-m0644","$emacsen_remove","$TMP/usr/lib/emacsen-common/packages/remove/$PACKAGE"); } if ($emacsen_startup ne '') { if (! -d "$TMP/etc/$dh{flavor}/site-start.d/") { doit("install","-d","$TMP/etc/$dh{flavor}/site-start.d/"); } - doit("install",$emacsen_startup,"$TMP/etc/$dh{flavor}/site-start.d/$dh{number}$PACKAGE.el"); + doit("install","-m0644",$emacsen_startup,"$TMP/etc/$dh{flavor}/site-start.d/$dh{number}$PACKAGE.el"); } if ($emacsen_install ne '' || $emacsen_remove ne '') { |