summaryrefslogtreecommitdiff
path: root/dh_installmenu
diff options
context:
space:
mode:
authorjoey <joey>2003-12-02 21:19:10 +0000
committerjoey <joey>2003-12-02 21:19:10 +0000
commite96ca35789dc7749bf5a29f1b7736f9e5877f6a4 (patch)
treec9fccc11f47fb5cc15e71b046fdb7435f9b9910d /dh_installmenu
parentfcaa5bcc7d65104c782634bdeb1de05d86f0662a (diff)
downloaddebhelper-e96ca35789dc7749bf5a29f1b7736f9e5877f6a4.tar.gz
r1629: * Removed the no upstream changelog for debian packages test.version_4.1.81
Even though it has personally saved me many times, debhelper is not intended to check packages for mistakes, and apparently it makes sense for some "native" packages to have a non-Debian changelog. Closes: #216099 * If a native package has an upstream changelog, call the debian/changelog changelog.Debian. * postinst-menu-method: always chmod menu-method executable even if update-menus is not. Closes: #220576 * dh_installmenu: do not ship menu-methods executable.
Diffstat (limited to 'dh_installmenu')
-rwxr-xr-xdh_installmenu2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installmenu b/dh_installmenu
index 2e5a6e9c..e61b9adf 100755
--- a/dh_installmenu
+++ b/dh_installmenu
@@ -67,7 +67,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if (!-d "$tmp/etc/menu-methods") {
doit("install","-d","$tmp/etc/menu-methods");
}
- doit("install","-p",$menu_method,"$tmp/etc/menu-methods/$package");
+ doit("install","-p","-m644",$menu_method,"$tmp/etc/menu-methods/$package");
if (! $dh{NOSCRIPTS}) {
autoscript($package,"postinst","postinst-menu-method","s/#PACKAGE#/$package/");