diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-11-12 21:12:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-11-12 21:12:06 +0000 |
commit | 8bcf8c8455a4408e205eba1acbf21a4428d3192c (patch) | |
tree | 13a479f6705664ec825a6ec1f690df9c499a5a8d /usr.bin/crontab/Makefile | |
parent | 258b48ab5f61b14c05f456acc16073292ce3670e (diff) |
Use absolute paths in pathnames.h. There is no longer a need to
chdir(2) to the cron dir and cron(8) now changes to / via daemon(3).
We no longer try to create/chmod the spool directories as they
should be set correctly at install time. The setegid(crontab)
has been moved to open_socket() so it is closer to the chmod(2)
call that needs it. OK deraadt@ tedu@
Diffstat (limited to 'usr.bin/crontab/Makefile')
-rw-r--r-- | usr.bin/crontab/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/crontab/Makefile b/usr.bin/crontab/Makefile index 5fc8d3ecae8..ad68bea530c 100644 --- a/usr.bin/crontab/Makefile +++ b/usr.bin/crontab/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.7 2015/10/31 12:19:41 millert Exp $ +# $OpenBSD: Makefile,v 1.8 2015/11/12 21:12:05 millert Exp $ PROG= crontab -SRCS= crontab.c entry.c env.c client.c common.c misc.c +SRCS= crontab.c entry.c env.c client.c misc.c CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../usr.sbin/cron BINGRP =crontab BINMODE=2555 |