]> git.donarmstrong.com Git - debhelper.git/commitdiff
r176: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:10:27 +0000 (05:10 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:10:27 +0000 (05:10 +0000)
debian/changelog
dh_installcron

index 2d8f91b7f9c79368b93f4fb63d4530656f26a8c0..d00c059228d65e110d70f72708f0a59937a993c0 100644 (file)
@@ -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.
index bd5eeddc4fd325d9dc5c5f19ae967a7b017eefed..7287266856d98265a17c8c700b619e775bfd08e2 100755 (executable)
@@ -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");
        }
 }