summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey>1999-08-17 05:10:27 +0000
committerjoey <joey>1999-08-17 05:10:27 +0000
commitbaff96382aa2b0e622ef2985c5451ba92de4fc71 (patch)
tree8b834927c40a81dfdda975541580f455c5b9ee8e
parentd1b0ab9c06dec3de45b94bc4c40cf7ca87f51cb8 (diff)
downloaddebhelper-baff96382aa2b0e622ef2985c5451ba92de4fc71.tar.gz
r176: Initial Import
-rw-r--r--debian/changelog7
-rwxr-xr-xdh_installcron2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 2d8f91b7..d00c0592 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 <joeyh@master.debian.org> 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 bd5eeddc..72872668 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");
}
}