From owner-freebsd-ports@FreeBSD.ORG Sun Oct 5 15:27:51 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8476EA4C for ; Sun, 5 Oct 2014 15:27:51 +0000 (UTC) Received: from cu01078b.smtpx.saremail.com (cu01078b.smtpx.saremail.com [195.16.151.53]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E4E22E4 for ; Sun, 5 Oct 2014 15:27:50 +0000 (UTC) Received: from [172.16.2.233] (izaro.sarenet.es [192.148.167.11]) by proxypop04.sare.net (Postfix) with ESMTPSA id CA7169DC55A for ; Sun, 5 Oct 2014 17:27:46 +0200 (CEST) From: Egoitz Aurrekoetxea Subject: Release generation failure from 10.0-RELEASE to RELENG_10_0 Message-Id: Date: Sun, 5 Oct 2014 17:27:43 +0200 To: freebsd-ports@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 15:27:51 -0000 Good afternoon, Have found what seems to be a bug in the generate-release.sh script. = When running the command for example :=20 sh generate-release.sh releng/10.0 /expert/release-generada it fails when stats building pkg in the chrooted env. I think this is = because in the chroot env are not created the shared library=20 cache hint files=85. so it seems to be solved when modifying the script = int he following way :=20 --- /root/generate-release.sh-defecto 2014-10-05 08:30:49.000000000 = +0200 +++ /usr/src/release/generate-release.sh 2014-10-05 = 08:30:57.000000000 +0200 @@ -108,6 +108,8 @@ if [ -d ${CHROOTDIR}/usr/doc ]; then=20 cp /etc/resolv.conf ${CHROOTDIR}/etc/resolv.conf =20 + ${CHROOT_CMD} /etc/rc.d/ldconfig onerestart + # Install docproj to build release documentation ${CHROOT_CMD} /bin/sh -c \ 'make -C /usr/ports/textproc/docproj \ I think this is similar as reported in ports/186554 bug. Could someone say if this should had been solved in another way?. I = think this is correct. Isn=92t it?. Best regards,=