From owner-svn-src-all@FreeBSD.ORG Sun Jun 14 03:29:25 2015 Return-Path: Delivered-To: svn-src-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1760780; Sun, 14 Jun 2015 03:29:25 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B00B4BA0; Sun, 14 Jun 2015 03:29:25 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5E3TPxj095076; Sun, 14 Jun 2015 03:29:25 GMT (envelope-from sjg@FreeBSD.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5E3TPBJ095075; Sun, 14 Jun 2015 03:29:25 GMT (envelope-from sjg@FreeBSD.org) Message-Id: <201506140329.t5E3TPBJ095075@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sjg set sender to sjg@FreeBSD.org using -f From: "Simon J. Gerraty" Date: Sun, 14 Jun 2015 03:29:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284369 - head/targets/pseudo/userland X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 03:29:25 -0000 Author: sjg Date: Sun Jun 14 03:29:24 2015 New Revision: 284369 URL: https://svnweb.freebsd.org/changeset/base/284369 Log: We cannot build makewhatis and mandoc Modified: head/targets/pseudo/userland/Makefile.depend Modified: head/targets/pseudo/userland/Makefile.depend ============================================================================== --- head/targets/pseudo/userland/Makefile.depend Sun Jun 14 03:28:48 2015 (r284368) +++ head/targets/pseudo/userland/Makefile.depend Sun Jun 14 03:29:24 2015 (r284369) @@ -2,9 +2,17 @@ # This file is not autogenerated - take care! +.if !defined(MK_MANDOCDB) +.include +.endif + DEP_RELDIR := ${_PARSEDIR:S,${SRCTOP}/,,} -DIRDEPS = \ +DIRDEPS= +.if ${MK_MANDOCDB} == "no" +DIRDEPS+= usr.bin/makewhatis +.endif +DIRDEPS+= \ bin/cat \ bin/chflags \ bin/chio \ @@ -271,7 +279,6 @@ DIRDEPS = \ usr.bin/lzmainfo \ usr.bin/m4 \ usr.bin/mail \ - usr.bin/makewhatis \ usr.bin/man \ usr.bin/mandoc \ usr.bin/mesg \ @@ -777,4 +784,5 @@ DIRDEPS.powerpc= \ DIRDEPS+= ${DIRDEPS.${MACHINE}:U} + .include