diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-05-31 11:38:25 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-05-31 11:38:25 +0000 |
commit | 326f1e2f2f7df769bbdfa3a57db3e16b902a8e4f (patch) | |
tree | aa3800a335a6ed34c21a345967c7cbce40fe869e /etc | |
parent | 67b780b03b1ce9491d0309d2e97ec63e8a86c50e (diff) | |
download | src-326f1e2f2f7df769bbdfa3a57db3e16b902a8e4f.tar.gz src-326f1e2f2f7df769bbdfa3a57db3e16b902a8e4f.zip |
Fixed double slashes in a pathname.
Fixed some style bugs. Ensure no creation of an obj directory so that
we don't need to chdir before installing.
Notes
Notes:
svn path=/head/; revision=36495
Diffstat (limited to 'etc')
-rw-r--r-- | etc/periodic/Makefile.inc | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/etc/periodic/Makefile.inc b/etc/periodic/Makefile.inc index 33f7d8bcc3f1..8967af1dbdbb 100644 --- a/etc/periodic/Makefile.inc +++ b/etc/periodic/Makefile.inc @@ -1,12 +1,10 @@ -# $Id: Makefile.inc,v 1.1 1997/08/12 18:23:25 pst Exp $ +# $Id: Makefile.inc,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $ -BINDIR= /etc/periodic/${.CURDIR:T} -BINOWN= root -BINGRP= wheel +BINDIR= /etc/periodic/${.CURDIR:T} +BINOWN= root +BINGRP= wheel +NOOBJ= -all depend etc lint: - -install: - cd ${.CURDIR}; \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \ - ${DESTDIR}/${BINDIR} +beforeinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN} \ + ${DESTDIR}${BINDIR} |