diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-04-29 11:27:13 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-04-29 11:27:13 +0000 |
commit | 31edc23277659df702b0a995b712d6204dd2886f (patch) | |
tree | 7b9a67f317acd7da6fea9006438c056d00fb7aa9 | |
parent | 5672303232976f748c6907eeda9dd0f7f1add98c (diff) |
To get the manpages installed, you can't override the install
target. Instead override realinstall.
-rw-r--r-- | usr.sbin/ypserv/ypinit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ypserv/ypinit/Makefile b/usr.sbin/ypserv/ypinit/Makefile index 81eb800d435..26f3a3f4fa8 100644 --- a/usr.sbin/ypserv/ypinit/Makefile +++ b/usr.sbin/ypserv/ypinit/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.13 1997/04/27 20:57:08 millert Exp $ +# $OpenBSD: Makefile,v 1.14 1997/04/29 11:27:12 niklas Exp $ MAN= ypinit.8 DISTFILES= Makefile.main Makefile.yp SHFILES= ypinit.sh -install: +realinstall: .for script in ${SHFILES} ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/${script} ${DESTDIR}${BINDIR}/${script:R} |