diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2000-10-13 16:51:05 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2000-10-13 16:51:05 +0000 |
commit | dd28ff57d07e03b9ec7cc8840fed4d79b77e52e2 (patch) | |
tree | 6630edb5748599a6d6193718c47beef3609902f5 /usr.sbin/sendmail | |
parent | b9b696f1abc7fcd1f327c7a003e2f19073711203 (diff) | |
download | FreeBSD-src-dd28ff57d07e03b9ec7cc8840fed4d79b77e52e2.zip FreeBSD-src-dd28ff57d07e03b9ec7cc8840fed4d79b77e52e2.tar.gz |
../Makefile.inc was clobbering BINDIR so sendmail was being installed in
/usr/sbin/ instead of /usr/libexec/sendmail/
Submitted by: bde
Diffstat (limited to 'usr.sbin/sendmail')
-rw-r--r-- | usr.sbin/sendmail/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile index c82cd65..6e16f71 100644 --- a/usr.sbin/sendmail/Makefile +++ b/usr.sbin/sendmail/Makefile @@ -5,7 +5,7 @@ SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail SMDIR= ${SENDMAIL_DIR}/src .PATH: ${SMDIR} -BINDIR?=/usr/libexec/sendmail +BINDIR= /usr/libexec/sendmail PROG= sendmail |