diff options
author | csgr <csgr@FreeBSD.org> | 1994-05-26 07:52:23 +0000 |
---|---|---|
committer | csgr <csgr@FreeBSD.org> | 1994-05-26 07:52:23 +0000 |
commit | 7c9c2ed673ee5702a11701a68da1df9c5390f928 (patch) | |
tree | 16014926bc7f0f2973143f1d1614a6521b951706 /usr.sbin | |
parent | 5de76909c7dea25d889899ec711cc30d3f2039eb (diff) | |
download | FreeBSD-src-7c9c2ed673ee5702a11701a68da1df9c5390f928.zip FreeBSD-src-7c9c2ed673ee5702a11701a68da1df9c5390f928.tar.gz |
>From Jordan
Fix braindeadness in my makefile
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/manctl/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.sbin/manctl/Makefile b/usr.sbin/manctl/Makefile index af83bf7..5272740 100644 --- a/usr.sbin/manctl/Makefile +++ b/usr.sbin/manctl/Makefile @@ -1,11 +1,9 @@ # Makefile -# $Id: Makefile,v 1.1.1.1 1994/04/17 21:26:21 csgr Exp $ +# $Id: Makefile,v 1.2 1994/04/19 06:43:36 csgr Exp $ -all: manctl.sh - /bin/cp ${.CURDIR}/manctl.sh manctl +all: + @echo -n install: all - install -o ${BINOWN} -g ${BINGRP} -m 555 manctl \ + install -c -o ${BINOWN} -g ${BINGRP} -m 555 ${.CURDIR}/manctl.sh \ ${DESTDIR}/usr/sbin/manctl - -.include <bsd.prog.mk> |