From owner-freebsd-perl@FreeBSD.ORG Sat Dec 20 15:19:01 2014 Return-Path: Delivered-To: perl@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FBC39EC for ; Sat, 20 Dec 2014 15:19:01 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 14BCF1624 for ; Sat, 20 Dec 2014 15:19:01 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 2BD88BDC56; Sat, 20 Dec 2014 16:18:58 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 0135BBDC25; Sat, 20 Dec 2014 16:18:57 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 8AA9D1FAF4AA; Sat, 20 Dec 2014 16:18:56 +0100 (CET) Date: Sat, 20 Dec 2014 16:18:56 +0100 From: Mathieu Arnold To: olli hauer Subject: Re: perl5.18 missing directory? Message-ID: <870E799157B2480CBEC52B9B@atuin.in.mat.cc> In-Reply-To: <54957DB3.6080903@gmx.de> References: <54957DB3.6080903@gmx.de> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: perl X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Dec 2014 15:19:01 -0000 +--On 20 d=C3=A9cembre 2014 14:46:27 +0100 olli hauer = wrote: | In many PD buildlogs (current ports tree) I found the following complain | about a missing perl directory |=20 | Must be related to a change after 2014-12-16 since I cannot find this in | older logs Does this patch fixes it ? Index: Mk/Scripts/qa.sh =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 --- Mk/Scripts/qa.sh (revision 374941) +++ Mk/Scripts/qa.sh (working copy) @@ -208,7 +208,7 @@ libperl() { local has_some_libperl_so files found - if [ -n "${SITE_ARCH_REL}" ]; then + if [ -n "${SITE_ARCH_REL}" -a -d "${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}" ]; then has_some_libperl_so=3D0 files=3D0 while read f; do --=20 Mathieu Arnold