From owner-svn-ports-all@freebsd.org Thu Sep 10 18:30:19 2015 Return-Path: Delivered-To: svn-ports-all@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 9AC51A0132C for ; Thu, 10 Sep 2015 18:30:19 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D44A1875 for ; Thu, 10 Sep 2015 18:30:19 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: (qmail 37435 invoked by uid 89); 10 Sep 2015 18:30:18 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 10 Sep 2015 18:30:17 -0000 Received: (qmail 73583 invoked by uid 89); 10 Sep 2015 15:39:03 -0000 Received: by simscan 1.3.1 ppid: 73575, pid: 73579, t: 0.1008s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 10 Sep 2015 15:39:03 -0000 Received: (qmail 23089 invoked by uid 89); 10 Sep 2015 15:39:03 -0000 Received: by simscan 1.4.0 ppid: 23071, pid: 23086, t: 0.4685s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 10 Sep 2015 15:39:02 -0000 From: Jan Beich To: Dmitry Marakasov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r396566 - head/security/racoon2 In-Reply-To: <201509101226.t8ACQ2Ot077200@repo.freebsd.org> (Dmitry Marakasov's message of "Thu, 10 Sep 2015 12:26:02 +0000 (UTC)") References: <201509101226.t8ACQ2Ot077200@repo.freebsd.org> Date: Thu, 10 Sep 2015 17:38:51 +0200 Message-ID: <7fny-p9mc-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2015 18:30:19 -0000 --=-=-= Content-Type: text/plain Dmitry Marakasov writes: > - @if [ -z `/sbin/sysctl -a | ${GREP} -q ipsec && echo ipsec` ]; then \ > + @if [ -z `/sbin/sysctl -a | ${GREP} -q ipsec && echo ipsec` ]; then \ Convert /*bin/foo to ${FOO} when moving lines. And this one can be simplified to either @if ! ${SYSCTL} -a | ${GREP} -q ipsec; then \ or @if ! ${SYSCTL} -qn kern.features.ipsec >/dev/null; then \ as all supported releases have https://svnweb.freebsd.org/changeset/base/214565 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJV8aQLXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3bw7IH/1M5LAQkJRD+nh63BXT6Spz2 1Npv6YyYiqVx+Vs3XK0qUMpBviP9sUGRe/NYiqYoiA6smYD5zyii5GUc2pQwEJel 0LvCy3MzCJRZH4ihPkF1jdqU+tnbazFSFWV38e0ibRQp34eSK+9031ifoloCPN2x 7MBor8cSS6U+eSJNa44oq+MqNoSwkfyprv0w8CctW+/ylwJApCD+sKvq/PcAuP56 2uVN/FxORzatb2tk4dgZumOF6X0yMBQ7FDd9dxU13lgu6e+MM1/f1f/sMrPhqJXX hxU/rQAXT4VdCLZ4td13Z365OB7Et9eDdRM0mHBPSc2Z/eML/k6CrmXPxJXokLs= =fdca -----END PGP SIGNATURE----- --=-=-=--