From: joey Date: Tue, 17 Aug 1999 05:10:27 +0000 (+0000) Subject: r176: Initial Import X-Git-Tag: debian_version_0_1~65 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=baff96382aa2b0e622ef2985c5451ba92de4fc71;p=debhelper.git r176: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 2d8f91b..d00c059 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (1.2.40) unstable; urgency=low + + * Let's just say 1.2.39 is not a good version of debhelper to use and + leave it at that. :-) + + -- Joey Hess Sat, 20 Feb 1999 22:55:27 -0800 + debhelper (1.2.39) unstable; urgency=low * dh_installcron: install files in cron.d with correct perms. diff --git a/dh_installcron b/dh_installcron index bd5eedd..7287266 100755 --- a/dh_installcron +++ b/dh_installcron @@ -23,6 +23,6 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if (! -d "$TMP/etc/cron.d") { doit("install","-o","root","-g","root","-d","$TMP/etc/cron.d"); } - doit("install","-m",644,"-o","root","-g","root","-d","$TMP/etc/cron.d"); + doit("install","-m",644,$cron,"$TMP/etc/cron.d/$PACKAGE"); } }