Date: Wed, 16 May 2018 01:33:49 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333658 - head/share/mk Message-ID: <201805160133.w4G1Xngd035759@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Wed May 16 01:33:48 2018 New Revision: 333658 URL: https://svnweb.freebsd.org/changeset/base/333658 Log: Force WITHOUT_FREEBSD_UPDATE when WITHOUT_PORTSNAP is set freebsd-update depends on phttpget from portsnap. We could move phttpget out of portsnap and build it as long as WITHOUT_FREEBSD_UPDATE and WITHOUT_PORTSNAP are not both set, but for now just make the dependency explicit. PR: 228220 Reported by: Dries Michiels Sponsored by: The FreeBSD Foundation Modified: head/share/mk/src.opts.mk Modified: head/share/mk/src.opts.mk ============================================================================== --- head/share/mk/src.opts.mk Wed May 16 01:08:11 2018 (r333657) +++ head/share/mk/src.opts.mk Wed May 16 01:33:48 2018 (r333658) @@ -424,6 +424,11 @@ MK_KERBEROS:= no MK_AUTHPF:= no .endif +.if ${MK_PORTSNAP} == "no" +# freebsd-update depends on phttpget from portsnap +MK_FREEBSD_UPDATE:= no +.endif + .if ${MK_TESTS} == "no" MK_DTRACE_TESTS:= no .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805160133.w4G1Xngd035759>