From owner-freebsd-ports@FreeBSD.ORG Fri Jan 20 10:44:28 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DAAC1065673; Fri, 20 Jan 2012 10:44:28 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 7C2668FC12; Fri, 20 Jan 2012 10:44:27 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [IPv6:2001:8b0:151:1:fa1e:dfff:feda:c0bb]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q0KAiNhQ024867 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 20 Jan 2012 10:44:23 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: OpenDKIM Filter v2.4.2 smtp.infracaninophile.co.uk q0KAiNhQ024867 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1327056263; bh=iKl/L6ToqiKquf6ErjxqkdOnF83BHFuFFxlzFelIfyE=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Cc; b=aFFZF0ywn0sMdBWProRrvEsBLwCv6kgGODnf/tNd/sG1Ny0wG3t2IT9hVuf4o8nmp oBownyJFK7u2QEHNhziC4yUwdd+ng6wZeKLQ9K57YREyG6cQyiwIcuCo3ncgjjHXJB Pz20wJ2HpKGIguWbqyFrUP2gpz0xRa1qcifse1dQ= Message-ID: <4F194587.8070301@infracaninophile.co.uk> Date: Fri, 20 Jan 2012 10:44:23 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org, gahr@freebsd.org References: <4F177264.3090708@freebsd.org> <4F18C5F9.2050900@FreeBSD.org> <20120120093057.GA5662@mech-cluster241.men.bris.ac.uk> In-Reply-To: <20120120093057.GA5662@mech-cluster241.men.bris.ac.uk> X-Enigmail-Version: 1.3.4 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig37B03E2EE24C276E7771E853" X-Virus-Scanned: clamav-milter 0.97.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: Subject: Re: with the cvs history? trying to help INDEX builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2012 10:44:28 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig37B03E2EE24C276E7771E853 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 20/01/2012 09:30, Anton Shterenlikht wrote: > # /usr/bin/time -hl make index > Generating INDEX-10 - please wait.."Makefile", line 41: warning: "/sbin= /sysctl -n hw.instruction_sse 2> /dev/null" returned non-zero status >=20 > Which Makefile does the warning refer to? lucid-nonsense:/usr/ports:% grep -r hw.instruction_sse . =2E/games/gnubg/files/patch-lib_neuralnet.c:+ int error =3D sysctlbyname("hw.instruction_sse", &result, &length, NULL, 0); =2E/audio/beast/Makefile:HAS_SSE!=3D ${SYSCTL} -n hw.instruction_sse 2> /dev/null <<<----** This one That's a systematic problem: callying sysctl like that will return a non-zero status if you ask it about a non-existent sysctl, but doing that is basically the point of the test. One fix would be: HAS_SSE!=3D ${SYSCTL} -i -n hw.instruction_sse 2>/dev/null It's only a warning though, so INDEX generation should still work. Cheers, Matthew cvs diff: Diffing . Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/beast/Makefile,v retrieving revision 1.46 diff -u -u -r1.46 Makefile --- Makefile 28 Dec 2011 03:21:23 -0000 1.46 +++ Makefile 20 Jan 2012 10:39:08 -0000 @@ -38,7 +38,7 @@ BROKEN=3D Does not compile on powerpc: array bound is not an integer constant .endif -HAS_SSE!=3D ${SYSCTL} -n hw.instruction_sse 2> /dev/null +HAS_SSE!=3D ${SYSCTL} -i -n hw.instruction_sse 2> /dev/null .if ${HAS_SSE} =3D=3D 1 PLIST_SUB+=3D SSE=3D"" .else --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig37B03E2EE24C276E7771E853 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk8ZRYcACgkQ8Mjk52CukIxjzgCfbaiEdLtj8OaqtcFYHl9Do9s7 54sAn1YgNogeF1XUpTNvfqqzhufgjE1y =3+Sd -----END PGP SIGNATURE----- --------------enig37B03E2EE24C276E7771E853--