aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-08-13 11:22:21 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-08-13 11:22:21 +0000
commit42a23098750790f0a9a16c2383049baf918b99f6 (patch)
treef93193d96db04b478aad0a7da2b8ace57238a162 /etc
parent4a05b623d6fd74ee7b283d63a8228c5b2b9f2dcd (diff)
downloadsrc-42a23098750790f0a9a16c2383049baf918b99f6.tar.gz
src-42a23098750790f0a9a16c2383049baf918b99f6.zip
Make distribute target work again in the wake of the cron.d changes.
Note: I don't like the way these files are being copied but every other method seemed gross too.
Notes
Notes: svn path=/head/; revision=28159
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile
index a40cf6c60c7c..ff52bbab1cbc 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
-# $Id: Makefile,v 1.154 1997/08/02 00:22:44 davidn Exp $
+# $Id: Makefile,v 1.155 1997/08/12 18:23:22 pst Exp $
# -rw-r--r--
BINOWN= root
@@ -20,7 +20,8 @@ BIN1= aliases amd.map csh.cshrc csh.login csh.logout dm.conf \
BIN2= motd
# -rwxr-xr-x root.wheel, for the new cron root.wheel
-BIN3= daily weekly monthly netstart pccard_ether
+BIN3= netstart pccard_ether
+CRONDIRS= cron.d/daily cron.d/weekly cron.d/monthly
MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
BSD.var.dist BSD.x11.dist
@@ -51,6 +52,7 @@ distribution:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN3} ${DESTDIR}/etc; \
+ tar -cBf - ${CRONDIRS} | tar -xvpBf - -C ${DESTDIR}/etc; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 crontab ${DESTDIR}/etc; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
${DESTDIR}/var/cron/log; \