X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 28E28DC2EC2 for ; Wed, 6 Jan 2016 13:09:13 +0000 (UTC) Received: from newmail.tetrasec.net (unknown [74.117.189.116]) by mail.alpinelinux.org (Postfix) with ESMTP id E9399DC2BCC for ; Wed, 6 Jan 2016 13:09:12 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (103.63.200.37.customer.cdi.no [37.200.63.103]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by newmail.tetrasec.net (Postfix) with ESMTPSA id B3A725A159B; Wed, 6 Jan 2016 12:58:20 +0000 (GMT) Date: Wed, 6 Jan 2016 14:09:06 +0100 From: Natanael Copa To: Roland Kammerer Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/drbd9-grsec: fix prepare logic Message-ID: <20160106140906.6944fe93@ncopa-desktop.alpinelinux.org> In-Reply-To: <1452014736-21355-1-git-send-email-roland.kammerer@linbit.com> References: <1452014736-21355-1-git-send-email-roland.kammerer@linbit.com> X-Mailer: Claws Mail 3.13.1 (GTK+ 2.24.28; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP On Tue, 5 Jan 2016 18:25:36 +0100 Roland Kammerer wrote: > - We have to add additional ".." to the path we want to check. $PWD is > already $srcdir. This bug was the only reason that it did not trigger > futher bugs in the "true" case. > - If we don't find an APKBUILD for the kernel flavor, error out > - We are in a sub-shell, we do not have to protect $pkgname > - We have to add "return 0", otherwise in the positive case where the > last check succeeds, it sets the sub-shell return value to 1, which > then triggers the failure path. > --- > testing/drbd9-grsec/APKBUILD | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/testing/drbd9-grsec/APKBUILD b/testing/drbd9-grsec/APKBUILD > index b9922c0..258163c 100644 > --- a/testing/drbd9-grsec/APKBUILD > +++ b/testing/drbd9-grsec/APKBUILD > @@ -33,14 +33,15 @@ _builddir=$srcdir/$_usname-$_usver > prepare() { > local i > # verify the kernel version > - (if [ -f ../../main/linux-${_flavor}/APKBUILD ]; then > - _name=$pkgname > - . ../../main/linux-${_flavor}/APKBUILD > - pkgname=$_name > + (if [ -f ../../../main/linux-${_flavor}/APKBUILD ]; then > + . ../../../main/linux-${_flavor}/APKBUILD I think we want a "cd $startdir" instead > [ "$_kver" != "$pkgver" ] \ > && die "please update _kver to $pkgver" > [ "$_kpkgrel" != "$pkgrel" ] \ > && die "please update _kpkgrel to $pkgrel" > + return 0 > + else > + die "could not determine kernel flavor: linux-${_flavor}" > fi) || return 1 > maybe move the return 0 til right before the closing )? -nc --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---