diff options
author | bde <bde@FreeBSD.org> | 1998-05-31 11:38:25 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-31 11:38:25 +0000 |
commit | 1f215376b1036eb5c00e725fd0b345c0493b491a (patch) | |
tree | 39e5d7b5b9ce8fcc666747ad19acc743ca2005fc /etc/periodic | |
parent | 317c29f9132ab62393e65c0c4f67e8e33cf6d00a (diff) | |
download | FreeBSD-src-1f215376b1036eb5c00e725fd0b345c0493b491a.zip FreeBSD-src-1f215376b1036eb5c00e725fd0b345c0493b491a.tar.gz |
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.
Diffstat (limited to 'etc/periodic')
-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 33f7d8b..8967af1 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} |