From owner-freebsd-questions@FreeBSD.ORG Fri Mar 28 10:23:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FD221065673 for ; Fri, 28 Mar 2008 10:23:45 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5AF8FC12; Fri, 28 Mar 2008 10:23:44 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47ECC735.20609@FreeBSD.org> Date: Fri, 28 Mar 2008 11:23:49 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.12 (Macintosh/20080213) MIME-Version: 1.0 To: Mark Moellering References: <200803272241.11944.mark@msen.com> In-Reply-To: <200803272241.11944.mark@msen.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: problems with i386 jail on amd64 install 7.0 Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 10:23:49 -0000 Mark Moellering wrote: > I have been trying to install an i386 jail on an amd64 install. I added > Target=i386 to the command line in the make buildworld and installworld > commands. I keep getting the following (or similar) error 'Target' does nothing, there is no such variable. If you meant 'TARGET', that is a real variable but not the one you want. You need to add 'TARGET_ARCH=i386' to your build/installworld to successfully cross-compile. Kris