summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-03-09 00:18:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-03-09 00:18:05 +0000
commitf4a655ff8e00a1b9a0e8db742feddd4d98104a20 (patch)
tree3ae5b6f14bac29f717698177d1d5b4bed6a248e2
parent39ae5151f6515290a3ced0a25ad19155b520db9a (diff)
Move WANT_LIBMILTER bits until after bsd.own.mk has been pulled in.
-rw-r--r--gnu/usr.sbin/sendmail/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.sbin/sendmail/Makefile b/gnu/usr.sbin/sendmail/Makefile
index d022ef55bc9..9f742eacb90 100644
--- a/gnu/usr.sbin/sendmail/Makefile
+++ b/gnu/usr.sbin/sendmail/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.7 2003/02/27 21:22:14 millert Exp $
+# $OpenBSD: Makefile,v 1.8 2003/03/09 00:18:04 millert Exp $
# We only use these libs internally
.if !make(install)
@@ -10,11 +10,6 @@ SUBDIR=
# The bits we install
SUBDIR+=sendmail mailstats makemap praliases smrsh editmap cf/cf
-# To build milter support define WANT_LIBMILTER in /etc/mk.conf (unsupported)
-.if defined(WANT_LIBMILTER)
-SUBDIR+= libmilter
-.endif
-
# Extra bits we don't build/install right now
#SUBDIR+= mail.local rmail vacation
@@ -24,3 +19,8 @@ SUBDIR+= doc/op cf
.endif
.include <bsd.subdir.mk>
+
+# To build milter support define WANT_LIBMILTER in /etc/mk.conf (unsupported)
+.if defined(WANT_LIBMILTER)
+SUBDIR+= libmilter
+.endif