svn commit: r226785 - head

Bjoern A. Zeeb bzeeb-lists at lists.zabbadoz.net
Wed Oct 26 12:20:20 UTC 2011


On Wed, 26 Oct 2011, Ed Schouten wrote:

> Author: ed
> Date: Wed Oct 26 07:49:47 2011
> New Revision: 226785
> URL: http://svn.freebsd.org/changeset/base/226785
>
> Log:
>  Attempt to fix build logic for gensnmptree.
>
>  There are two problems with the existing logic. It builds gensnmptree
>  on <700018, even if WITHOUT_BSNMP is set, but more importantly, we must
>  not forget to build gensnmptree on systems that have originally been
>  built without. This causes a buildworld on those systems to fail.

Wasn't it originally located in a different path?   Could be my memory
doesn't serve me right on this one.  You might want to ping syrinx.


>  MFC after:	1 week
>
> Modified:
>  head/Makefile.inc1
>
> Modified: head/Makefile.inc1
> ==============================================================================
> --- head/Makefile.inc1	Wed Oct 26 06:50:40 2011	(r226784)
> +++ head/Makefile.inc1	Wed Oct 26 07:49:47 2011	(r226785)
> @@ -1018,7 +1018,8 @@ _yacc=		usr.bin/yacc
> _awk=		usr.bin/awk
> .endif
>
> -.if ${BOOTSTRAPPING} < 700018
> +.if ${MK_BSNMP} != "no" && \
> +    (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
> _gensnmptree=	usr.sbin/bsnmpd/gensnmptree
> .endif
>
>

-- 
Bjoern A. Zeeb                                 You have to have visions!
          Stop bit received. Insert coin for new address family.


More information about the svn-src-head mailing list