diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-18 19:09:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-18 19:09:14 +0000 |
commit | 98e8119237d205d9760a547e7192ef2f5ee2631a (patch) | |
tree | 61d4179f22a24bc5d1d0e2dfd2f2c0112d339cb2 /usr.bin/sudo | |
parent | 760441833d7dbe5b97d28614129ab0f15fe5ba57 (diff) |
Use ${INSTALL} and ${INSTALL_COPY}
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/Makefile.bsd-wrapper | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/sudo/Makefile.bsd-wrapper b/usr.bin/sudo/Makefile.bsd-wrapper index e642a40878c..1ca7b5e9f98 100644 --- a/usr.bin/sudo/Makefile.bsd-wrapper +++ b/usr.bin/sudo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1999/11/18 17:09:31 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.3 1999/11/18 19:09:13 millert Exp $ MAN= sudo.8 sudoers.5 visudo.8 XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}" @@ -52,7 +52,8 @@ maninstall: install: maninstall ${MAKE} ${XCFLAGS} prefix=${DESTDIR}/usr sysconfdir=${DESTDIR}/etc \ - bindir=${DESTDIR}/usr/bin install-binaries + bindir=${DESTDIR}/usr/bin INSTALL="${INSTALL} ${INSTALL_COPY}" \ + install-binaries clean cleandir: -@test -e Makefile && ${MAKE} distclean |