diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-18 17:09:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-18 17:09:32 +0000 |
commit | 4616a95798e9909dcca3fa02ebca9bb13a966b6e (patch) | |
tree | 68fd35fdc959bbe61e04219e6bb4342d2e723f3e /usr.bin/sudo | |
parent | 25e4ced312474faa0cec833817e807acdca7ca29 (diff) |
Don't install empty /etc/sudoers here. If we want to do so it should go in src/etc.
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sudo/Makefile.bsd-wrapper b/usr.bin/sudo/Makefile.bsd-wrapper index adb749a52b7..e642a40878c 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.1 1999/11/18 16:29:01 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1999/11/18 17:09:31 millert Exp $ MAN= sudo.8 sudoers.5 visudo.8 XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}" @@ -52,7 +52,7 @@ maninstall: install: maninstall ${MAKE} ${XCFLAGS} prefix=${DESTDIR}/usr sysconfdir=${DESTDIR}/etc \ - bindir=${DESTDIR}/usr/bin install-binaries install-sudoers + bindir=${DESTDIR}/usr/bin install-binaries clean cleandir: -@test -e Makefile && ${MAKE} distclean |