Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 May 2015 19:29:20 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283782 - head
Message-ID:  <201505301929.t4UJTKSs073603@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat May 30 19:29:19 2015
New Revision: 283782
URL: https://svnweb.freebsd.org/changeset/base/283782

Log:
  Only push libohash once in bootstrap tools

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sat May 30 18:38:06 2015	(r283781)
+++ head/Makefile.inc1	Sat May 30 19:29:19 2015	(r283782)
@@ -1276,8 +1276,8 @@ _sed=		usr.bin/sed
 .endif
 
 .if ${BOOTSTRAPPING} < 1000002
-_m4=		lib/libohash \
-		usr.bin/m4
+_libohash=	lib/libohash
+_m4=		usr.bin/m4
 
 ${_bt}-usr.bin/m4: ${_bt}-lib/libohash
 .endif
@@ -1364,8 +1364,8 @@ _kerberos5_bootstrap_tools= \
 .endif
 
 .if ${MK_MANDOCDB} != "no"
-_makewhatis=	lib/libohash \
-		lib/libsqlite3 \
+_libohash?=	lib/libohash
+_makewhatis=	lib/libsqlite3 \
 		lib/libmandoc \
 		usr.bin/mandoc
 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libohash ${_bt}-lib/libsqlite3
@@ -1393,6 +1393,7 @@ bootstrap-tools: .PHONY
     ${_awk} \
     ${_cat} \
     usr.bin/lorder \
+    ${_libohash} \
     ${_makewhatis} \
     usr.bin/rpcgen \
     ${_sed} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505301929.t4UJTKSs073603>