From owner-freebsd-hackers@FreeBSD.ORG Tue Sep 27 16:06:17 2011 Return-Path: Delivered-To: hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DAFDE106564A for ; Tue, 27 Sep 2011 16:06:17 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9B6C48FC17 for ; Tue, 27 Sep 2011 16:06:17 +0000 (UTC) Received: by gyf2 with SMTP id 2so6788540gyf.13 for ; Tue, 27 Sep 2011 09:06:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; bh=zZJhjXbQplcCqySPkWYwPOqjLqwf6gf04p5zpMuwO7A=; b=a2JGmGUlQC0t0s+JNnjJ+vK62sDPKS4h9AEzrnBfbKH7punQwtbdNZaNSVz98ZvqS+ duvOBGQORMXwZ7lQSMAIROVDQDQDAOXkhg80oOr3OTKTN8afBYlhHFLSniGxFB7GhSdO pmhUzywe8IEtCKWLNhQxOI1mnxXiB1uUm55gM= Received: by 10.42.97.8 with SMTP id l8mr3363862icn.3.1317138207218; Tue, 27 Sep 2011 08:43:27 -0700 (PDT) Received: from starr-wireless.local (c-24-6-49-154.hsd1.ca.comcast.net. [24.6.49.154]) by mx.google.com with ESMTPS id fy35sm28500791ibb.4.2011.09.27.08.43.24 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 27 Sep 2011 08:43:25 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: Garrett Cooper In-Reply-To: <20110927.093117.140.1@DEV> Date: Tue, 27 Sep 2011 08:43:23 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <2F3ECD4D-5EEF-4790-9FEF-809A90C8693D@gmail.com> References: <20110927.093117.140.1@DEV> To: rank1seeker@gmail.com X-Mailer: Apple Mail (2.1084) Cc: hackers@freebsd.org Subject: Re: /usr/src -> make doesn't recognize target when '-f -' is used X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Sep 2011 16:06:17 -0000 On Sep 27, 2011, at 2:31 AM, rank1seeker@gmail.com wrote: > cd /usr/src >=20 > This works: > -- > # echo 'CPUTYPE?=3Dcore2 > CFLAGS+=3D-march=3Dnative > NO_CPU_CFLAGS=3Dyes > COPTFLAGS+=3D-march=3Dnative > NO_CPU_COPTFLAGS=3Dyes' | /usr/bin/make __MAKE_CONF=3D/dev/null -f - = -V CPUTYPE > -- >=20 > This DOESN'T: > -- > # echo 'CPUTYPE?=3Dcore2 > CFLAGS+=3D-march=3Dnative > NO_CPU_CFLAGS=3Dyes > COPTFLAGS+=3D-march=3Dnative > NO_CPU_COPTFLAGS=3Dyes' | /usr/bin/make __MAKE_CONF=3D/dev/null -f - = -j4 buildworld >=20 > make: don't know how to make buildworld. Stop > (Yes, in /usr/src) > -- >=20 > When '-f -' is removed, build will start? > Is this a bug or I simply don't see, an obvious thing? How are you invoking the build exactly in each case? Thanks, -Garrett=