From owner-freebsd-stable@FreeBSD.ORG Thu Feb 21 13:13:12 2013 Return-Path: Delivered-To: freebsd-stable@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 C3D90FF6 for ; Thu, 21 Feb 2013 13:13:12 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from winston.madpilot.net (winston.madpilot.net [78.47.75.155]) by mx1.freebsd.org (Postfix) with ESMTP id 73F8D15A for ; Thu, 21 Feb 2013 13:13:12 +0000 (UTC) Received: from winston.madpilot.net (localhost [127.0.0.1]) by winston.madpilot.net (Postfix) with ESMTP id 3ZBXP71tZ3zFTvn; Thu, 21 Feb 2013 11:44:27 +0100 (CET) X-Virus-Scanned: amavisd-new at madpilot.net Received: from winston.madpilot.net ([127.0.0.1]) by winston.madpilot.net (winston.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zK9_t3qEUvGh; Thu, 21 Feb 2013 11:44:25 +0100 (CET) Received: from vwg82.hq.ignesti.it (unknown [80.74.176.55]) by winston.madpilot.net (Postfix) with ESMTPSA; Thu, 21 Feb 2013 11:44:25 +0100 (CET) Message-ID: <5125FA8A.8060701@madpilot.net> Date: Thu, 21 Feb 2013 11:44:26 +0100 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130220 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Patrick M. Hausen" Subject: Re: Poudriere questions References: <2954D7E9-5FBD-4A9E-A097-195F2BBB195E@punkt.de> <512502C3.9010702@madpilot.net> <0A93B8B5-9C00-4E5E-A0CC-D8CF51A65A82@punkt.de> <512507A5.5080307@madpilot.net> <2F88E216-2412-4FA2-99BE-36DB37D15EC0@punkt.de> <5125E0CE.7030709@madpilot.net> <4647BC50-5866-4B9D-B5A5-B1852EB6045E@punkt.de> In-Reply-To: <4647BC50-5866-4B9D-B5A5-B1852EB6045E@punkt.de> Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-stable@freebsd.org List" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2013 13:13:12 -0000 On 02/21/13 10:15, Patrick M. Hausen wrote: > Hi, Guido, > > hope you have a couple of more minutes ... > > After the first failure with the make.conf syntax I just put the options in unconditionally, > to try if they end up in the final Apache package. Just to be sure, are you putting these lines in poudriere's make.conf for your jail? The one in /usr/local/etc/poudriere.d/make.conf (poudriere global one, or the jail-make.conf one if you need different ones for different environments) poudriere will use that one when building, not the one in /etc. > OK, tried manually wihtout Poudriere: > > make config, enable PROXY, PROXY_HTTP, SUEXEC, then specify the rest on the command > line when building: > > make -DBATCH -DSUEXEC_DOCROOT=/var/apache -DSUEXEC_LOGFILE=/var/apache/GLOBAL/suexec_log install > This command line isn't correct. In fact I don't really know how it could have ever worked. From make(1): -D variable Define variable to be 1, in the global context. An example should clarify things up > make -DFOO=bar -V FOO > make -DFOO=bar -V FOO=bar 1 > make FOO=bar -V FOO bar The correct one should be make -DBATCH SUEXEC_DOCROOT=/var/apache SUEXEC_LOGFILE=/var/apache/GLOBAL/suexec_log install -- Guido Falsi