From owner-freebsd-current@FreeBSD.ORG Sun May 11 15:14:50 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5A0AA2B for ; Sun, 11 May 2014 15:14:49 +0000 (UTC) Received: from mail-pa0-f45.google.com (mail-pa0-f45.google.com [209.85.220.45]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8FEF2B26 for ; Sun, 11 May 2014 15:14:49 +0000 (UTC) Received: by mail-pa0-f45.google.com with SMTP id ey11so6549348pad.32 for ; Sun, 11 May 2014 08:14:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:content-type:mime-version:subject:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to; bh=T4VmIQpmLGjVTwjGbyfr2bh/KTFALKvRgHypxoxf2Xo=; b=Mtpbm1YmdoHi5hagDXprVSyD4N+GYSqpiyW/T5vziZC6p0RKCxCTx9ziB1Mg94MblA FwRcTJHMHB5rOgwqYJHxKOR22u5O4ek5PMCEcx/2p5d6YeTGUK/4av5FKSFxlgdHawik FJe4J+0qva8XUaVC872AKECLxj1Kbp5W2H0ipjnnjH0kJyR5tKI2uWgL5YfrV0GUk5bm pID5SXYdpxT/ViJUjlyFwKg0OL9Mn06PKDB6t5Bn7355g9R46vQpbgGJwauv0PvxDe+B aebf4qaPJOcpMX7BXBxJ7/aj9cU/JWyplOYLpGFcxt2QJf5OK+5ogGjL1yaUAodSifZ1 cMuw== X-Gm-Message-State: ALoCoQlPODKp5/2k1DP5LkoO3DV5yRFDTrcqt686ty8QyznkYUVGvRwSQ1wxwN8vhaz52Vca9bU+ X-Received: by 10.66.248.228 with SMTP id yp4mr45155977pac.94.1399821288922; Sun, 11 May 2014 08:14:48 -0700 (PDT) Received: from lgwl-achen.corp.netflix.com (dc1-prod.netflix.com. [69.53.236.251]) by mx.google.com with ESMTPSA id qv3sm17972253pbb.87.2014.05.11.08.14.47 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 11 May 2014 08:14:48 -0700 (PDT) Sender: Warner Losh X-Google-Original-From: Warner Losh Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Makefile Problem of FreeBSD-Current From: Warner Losh In-Reply-To: <536F71F0.9030605@gmail.com> Date: Sun, 11 May 2014 09:14:46 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <3339745E-1C55-4265-9E17-C1515C1D0430@gmail.com> References: <536F71F0.9030605@gmail.com> To: bycn82 X-Mailer: Apple Mail (2.1874) Cc: FreeBSD Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18 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: Sun, 11 May 2014 15:14:50 -0000 On May 11, 2014, at 6:49 AM, bycn82 wrote: > As you can see below . it still did not find the src.opts.mk >=20 >=20 > root@FB10Head:/usr/src/sbin/ipfw # make > make: "/usr/src/sbin/ipfw/Makefile" line 3: Could not find src.opts.mk > make: "/usr/src/sbin/ipfw/Makefile" line 9: Malformed conditional = (${MK_PF} !=3D "no") > make: "/usr/src/sbin/ipfw/../Makefile.inc" line 4: Could not find = src.opts.mk > make: "/usr/src/sbin/ipfw/../Makefile.inc" line 9: Malformed = conditional (${MK_DYNAMICROOT} =3D=3D "no") > make: Fatal errors encountered -- cannot continue > make: stopped in /usr/src/sbin/ipfw > root@FB10Head:/usr/src/sbin/ipfw # uname -a > FreeBSD FB10Head 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r265868: Sun May = 11 11:44:35 UTC 2014 root@FB10Head:/usr/obj/usr/src/sys/GENERIC = amd64 =46rom UPDATING: 20140505: /etc/src.conf now affects only builds of the FreeBSD src tree. = In the past, it affected all builds that used the bsd.*.mk files. The = old behavior was a bug, but people may have relied upon it. To get = this behavior back, you can .include /etc/src.conf fro20140505: /etc/src.conf now affects only builds of the FreeBSD src tree. = In the past, it affected all builds that used the bsd.*.mk files. The = old behavior was a bug, but people may have relied upon it. To get = this behavior back, you can .include /etc/src.conf from = /etc/make.conf (which is still global and isn't changed). This also changes the behavior of incremental builds inside the tree of individual directories. Set MAKESYSPATH to ".../share/mk" to do that. Although this has survived make universe and some upgrade = scenarios, other upgrade scenarios may have broken. At least one form of temporary breakage was fixed with MAKESYSPATH settings for = buildworld as well... Since you are building inside the tree, did you set MAKESYSPATH as = outlined in UPDATING? Warner