From owner-freebsd-ports@freebsd.org Mon Jul 27 22:56:49 2015 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 452329AC363 for ; Mon, 27 Jul 2015 22:56:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C022BC2 for ; Mon, 27 Jul 2015 22:56:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 6A7FBBDC2E; Tue, 28 Jul 2015 00:56:46 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 66071BDC25; Tue, 28 Jul 2015 00:56:46 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 451D63D50E37; Tue, 28 Jul 2015 00:56:46 +0200 (CEST) Date: Tue, 28 Jul 2015 00:56:46 +0200 From: Mathieu Arnold To: Alexander Leidinger , freebsd-ports@freebsd.org Subject: Re: error message from Freshports after commit? Message-ID: <7219AB26EFB4FF4347E8DADE@atuin.in.mat.cc> In-Reply-To: <20150727115524.Horde.W8uCr4IPga-UMkhOFd3QBtl@webmail.leidinger.net> References: <20150726152029.Horde.5fJLWJHfi3zZcyZl2BNIRA8@webmail.leidinger.net> <20150726223123.00000f0d@Leidinger.net> <55B5606A.6070408@passap.ru> <20150727115524.Horde.W8uCr4IPga-UMkhOFd3QBtl@webmail.leidinger.net> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========7715BC94351D8F438F31==========" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jul 2015 22:56:49 -0000 --==========7715BC94351D8F438F31========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +--On 27 juillet 2015 11:55:24 +0200 Alexander Leidinger wrote: | testtarget: | .if defined(${QUOTED_VAR}) && ${QUOTED_VAR} == "test" | echo works | .endif No. If you run "make QUOTED_VAR=test testtarget" this will evaluate as: testtarget: .if defined(test) && test == "test" echo works .endif and of course, test is not defined. You want to write: testtarget: .if defined(QUOTED_VAR) && ${QUOTED_VAR} == "test" echo works .endif -- Mathieu Arnold --==========7715BC94351D8F438F31========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJVtrcuXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IZ4AQAJVTWeN7hvXe4ssw6c0XRcQT nTWRnj3N15YRS+4vtNGIdpOrkJKmaTOO+EcY9xdKJBOv7yKnpD7SMmct7Tol0uvb 33XBAutzaQ0PQfDHzttcevNI8OJkeiXCq21O2BnH1QjUIa3dGVoRrlzdyjBN1qWh f/V3a/IDvbdYYFxV/QFYIia/sQdkEkc/rvcguj9mHyG0IyA48HOpc03im1Il5Ys0 S+2F+kW2K3ZVoO8yjApz6paNlAozrkAYvsbpbo+0+WVs5mtsuxm0Om7D+ifIR1yg 9zC06S28v6SINjba/oCgl6+Y33AFUES+V4rYu4CzeV5nNW18MyQZxWlyzw5vhQ2M 2o+gTfh7uYQ8m3t3s/FNlHrXt+M3gjT0DeWT7FmU8yPxphW379Jx91On9L3y19yc IwrSHRTf/aVCVe25J5ME9OoN/vg7YcVV/+tWEuyoOvQAro6Sbrm2/YIuiLznkMbO /XxeA1t90ds3CJ+2V8p+lL16Te5uD/fdBBDWm1h50e0Y6XK7miISyM/BUbZhQluz Wg6Zd7fswY4h/XRw6OMUHg5MznNQ99YwWJUl1nlIHxZqnBdL/INTAqLwHRfg3XNX En1OxgU3xkEpi0sYIsm5vsnCIHR5l/CJlcA9sq4UxO3ausHHN81ub4/Ol6xcvqXb a4lLEiGPEIq7qC2oCAhf =hCwB -----END PGP SIGNATURE----- --==========7715BC94351D8F438F31==========--