diff options
author | joey <joey> | 2003-12-02 21:19:10 +0000 |
---|---|---|
committer | joey <joey> | 2003-12-02 21:19:10 +0000 |
commit | e96ca35789dc7749bf5a29f1b7736f9e5877f6a4 (patch) | |
tree | c9fccc11f47fb5cc15e71b046fdb7435f9b9910d /dh_installmenu | |
parent | fcaa5bcc7d65104c782634bdeb1de05d86f0662a (diff) | |
download | debhelper-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-x | dh_installmenu | 2 |
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/"); |