From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwnuJ-0000vD-K1 for qemu-devel@nongnu.org; Mon, 03 Sep 2018 08:24:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwnuI-0007nP-Q4 for qemu-devel@nongnu.org; Mon, 03 Sep 2018 08:24:39 -0400 Received: from mail-oi0-x22f.google.com ([2607:f8b0:4003:c06::22f]:43854) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fwnuH-0007lW-DE for qemu-devel@nongnu.org; Mon, 03 Sep 2018 08:24:37 -0400 Received: by mail-oi0-x22f.google.com with SMTP id b15-v6so616833oib.10 for ; Mon, 03 Sep 2018 05:24:37 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20180903115926.GB14377@redhat.com> References: <20180830142708.14311-1-sameeh@daynix.com> <20180830142708.14311-2-sameeh@daynix.com> <20180903115926.GB14377@redhat.com> From: Peter Maydell Date: Mon, 3 Sep 2018 13:24:16 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [RFC 1/6] Add bpf support to qemu List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Daniel_P=2E_Berrang=C3=A9?= Cc: Sameeh Jubran , Yan Vugenfirer , Jason Wang , QEMU Developers On 3 September 2018 at 12:59, Daniel P. Berrang=C3=A9 = wrote: >> ########################################## >> +# check for usable bpf system call >> +if test "$bpf" =3D "yes"; then > > if test "x$bpf" !=3D "xno"; then We don't use the leading-x thingy elsewhere in configure, why is this condition special? (We can assume we don't have a broken shell, and we know that $bpf won't be a string starting with a hyphen.) thanks -- PMM