diff options
author | pst <pst@FreeBSD.org> | 1997-06-29 06:03:42 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1997-06-29 06:03:42 +0000 |
commit | 1b991716a40d6a610dc43632073c47ebe7664cfc (patch) | |
tree | c7158127b2b2c61e70ffad22dc1dc51137e9d1dd /usr.sbin/mrouted | |
parent | f8b9ad4f30d3e1eb9d5bce568a61b5a4ca35a8ad (diff) | |
download | FreeBSD-src-1b991716a40d6a610dc43632073c47ebe7664cfc.zip FreeBSD-src-1b991716a40d6a610dc43632073c47ebe7664cfc.tar.gz |
NOSHARED takes a yes/YES no/NO value, not "true, false, hey mon!".
NOPIC is used to not generate a shared library, not NOSHARED.
Make NOSHARED advisory where appropriate.
Remove bogus NOSHARED (kbdio).
Diffstat (limited to 'usr.sbin/mrouted')
-rw-r--r-- | usr.sbin/mrouted/common/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/mrouted/common/Makefile b/usr.sbin/mrouted/common/Makefile index 9bcfb27..801a207 100644 --- a/usr.sbin/mrouted/common/Makefile +++ b/usr.sbin/mrouted/common/Makefile @@ -1,8 +1,8 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 16:07:20 peter Exp $ -LIB= mrouted -NOPROFILE= -NOSHARED= +LIB= mrouted +NOPROFILE= yes +NOPIC= yes S= ${.CURDIR}/.. .PATH: $S |