From owner-freebsd-current@FreeBSD.ORG Wed Aug 31 23:18:55 2005 Return-Path: X-Original-To: freebsd-current@FreeBSD.org Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30D2C16A41F for ; Wed, 31 Aug 2005 23:18:55 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB19143D45 for ; Wed, 31 Aug 2005 23:18:54 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j7VNFZ3C014096; Wed, 31 Aug 2005 17:15:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 31 Aug 2005 17:16:01 -0600 (MDT) Message-Id: <20050831.171601.65987352.imp@bsdimp.com> To: dominique.goncalves@gmail.com From: "M. Warner Losh" In-Reply-To: <7daacbbe05083105486887f43e@mail.gmail.com> References: <7daacbbe05083105486887f43e@mail.gmail.com> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 31 Aug 2005 17:15:35 -0600 (MDT) Cc: freebsd-current@FreeBSD.org Subject: Re: make distribution fails with RELENG_6 on a 5.4-RELEASE-p6 host X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Aug 2005 23:18:55 -0000 In message: <7daacbbe05083105486887f43e@mail.gmail.com> Dominique Goncalves writes: : I'm trying to create a livecd with freesbie2 [1] with RELENG_6 source : on FreeBSD 5.4-RELEASE-p6, : but the make distribution fails: ... : cap_mkdb: illegal option -- l : usage: cap_mkdb [-v] [-f outfile] file [file ...] : *** Error code 1 I recently added the following knobs to the makefile to allow one to do this. You'll need to invoke make distribution with CAP_MKDB_ENDIAN="" and PWD_MKDB_ENDIAN="". This will limit you to building only on the endian as the host, but that's usually not an issue. However, I've not yet MFC'd these changes to RELENG_6, so you'll need to change the *_MKDB_ENDAIN= lines in etc/Makefile to be ?= Warner