From nobody@FreeBSD.org  Wed May  8 15:04:07 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	by hub.freebsd.org (Postfix) with ESMTP id 1AE386E3
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  8 May 2013 15:04:07 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from oldred.FreeBSD.org (oldred.freebsd.org [8.8.178.121])
	by mx1.freebsd.org (Postfix) with ESMTP id 0CF5D627
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  8 May 2013 15:04:07 +0000 (UTC)
Received: from oldred.FreeBSD.org ([127.0.1.6])
	by oldred.FreeBSD.org (8.14.5/8.14.5) with ESMTP id r48F46ux020560
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 8 May 2013 15:04:06 GMT
	(envelope-from nobody@oldred.FreeBSD.org)
Received: (from nobody@localhost)
	by oldred.FreeBSD.org (8.14.5/8.14.5/Submit) id r48F462s020550;
	Wed, 8 May 2013 15:04:06 GMT
	(envelope-from nobody)
Message-Id: <201305081504.r48F462s020550@oldred.FreeBSD.org>
Date: Wed, 8 May 2013 15:04:06 GMT
From: Garrett Cooper <yaneurabeya@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [PATCH] compile_et needs to be built with bootstrap-tools for buildworld when WITH_KERBEROS is set
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         178421
>Category:       conf
>Synopsis:       [build] [patch] compile_et needs to be built with bootstrap-tools for buildworld when WITH_KERBEROS is set
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    antoine
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 08 15:10:00 UTC 2013
>Closed-Date:    Tue Jun 04 19:34:40 UTC 2013
>Last-Modified:  Tue Jun 04 19:34:40 UTC 2013
>Originator:     Garrett Cooper
>Release:        10-CURRENT
>Organization:
EMC Isilon
>Environment:
FreeBSD fuji-current.local 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r+6a3d3f6-dirty: Sat Apr 27 16:03:39 PDT 2013     root@fuji-current.local:/usr/obj/usr/src/sys/FUJI  i386
>Description:
I've seen the following error when running make tinderbox with SRCCONF=/dev/null __MAKE_CONF=/dev/null on a system without kerberos on it:

compile_et /usr/src.svn/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/asn1_err.et
make: exec(compile_et) failed (No such file or directory)

The issue can be resolved like so:

Index: Makefile.inc1
===================================================================
--- Makefile.inc1	(revision 250324)
+++ Makefile.inc1	(working copy)
@@ -1176,7 +1180,8 @@
 	kerberos5/lib/libroken \
 	kerberos5/lib/libvers \
 	kerberos5/tools/asn1_compile \
-	kerberos5/tools/slc
+	kerberos5/tools/slc \
+	usr.bin/compile_et
 .endif
>How-To-Repeat:
make buildworld installworld -DWITHOUT_KERBEROS SRCCONF=/dev/null __MAKE_CONF=/dev/null
make buildworld -DWITH_KERBEROS SRCCONF=/dev/null __MAKE_CONF=/dev/null
>Fix:


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->antoine 
Responsible-Changed-By: antoine 
Responsible-Changed-When: Sat May 11 13:40:51 UTC 2013 
Responsible-Changed-Why:  
Take. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178421 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/178421: commit references a PR
Date: Sat, 11 May 2013 13:44:23 +0000 (UTC)

 Author: antoine
 Date: Sat May 11 13:44:11 2013
 New Revision: 250510
 URL: http://svnweb.freebsd.org/changeset/base/250510
 
 Log:
   Add compile_et to kerberos bootstrap tools.
   This makes it possible to build a regular world on a host without kerberos.
   
   PR:		conf/178421
   Submitted by:	Garrett Cooper
   MFC after:	1 month
 
 Modified:
   head/Makefile.inc1
 
 Modified: head/Makefile.inc1
 ==============================================================================
 --- head/Makefile.inc1	Sat May 11 13:32:38 2013	(r250509)
 +++ head/Makefile.inc1	Sat May 11 13:44:11 2013	(r250510)
 @@ -1176,7 +1176,8 @@ _kerberos5_bootstrap_tools= \
  	kerberos5/lib/libroken \
  	kerberos5/lib/libvers \
  	kerberos5/tools/asn1_compile \
 -	kerberos5/tools/slc
 +	kerberos5/tools/slc \
 +	usr.bin/compile_et
  .endif
  
  #	Please document (add comment) why something is in 'bootstrap-tools'.
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->patched 
State-Changed-By: antoine 
State-Changed-When: Sat May 11 13:55:35 UTC 2013 
State-Changed-Why:  
Patched in head. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178421 
State-Changed-From-To: patched->closed 
State-Changed-By: antoine 
State-Changed-When: Tue Jun 4 19:33:31 UTC 2013 
State-Changed-Why:  
Close: this doesn't need to be MFCed in stable/9, as r233337 was never MFCed 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178421 
>Unformatted:
