diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
commit | ee66677a7a4c93fa63e21b0e7f1ea2e081060abb (patch) | |
tree | 086bc6374cc176de9e2533a2b8b25ab0ef497b15 /libexec/mail.local | |
parent | 4c3763445ddc83d75b7e77c33aa5b1871fe550b7 (diff) |
Remove kludges intended to support src trees with partial obj trees.
Discussed with: ru
Notes
Notes:
svn path=/head/; revision=147225
Diffstat (limited to 'libexec/mail.local')
-rw-r--r-- | libexec/mail.local/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libexec/mail.local/Makefile b/libexec/mail.local/Makefile index 92a68a486787..57837d11166b 100644 --- a/libexec/mail.local/Makefile +++ b/libexec/mail.local/Makefile @@ -10,12 +10,8 @@ MAN= mail.local.8 CFLAGS+=-I${SENDMAIL_DIR}/include -I. WFORMAT=0 -.if exists(${.OBJDIR}/../../lib/libsm) -LIBSMDIR:= ${.OBJDIR}/../../lib/libsm -.else -LIBSMDIR!= cd ${.CURDIR}/../../lib/libsm; make -V .OBJDIR -.endif -LIBSM:= ${LIBSMDIR}/libsm.a +LIBSMDIR= ${.OBJDIR}/../../lib/libsm +LIBSM= ${LIBSMDIR}/libsm.a DPADD= ${LIBSM} LDADD= ${LIBSM} |