Received: by mail.netbsd.org (Postfix, from userid 605) id 3EADF84D9E; Wed, 7 Feb 2018 16:14:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A40584D9E for ; Wed, 7 Feb 2018 16:14:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id h3QPJ2ptp_vH for ; Wed, 7 Feb 2018 16:14:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 97EC684D8F for ; Wed, 7 Feb 2018 16:14:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF059FB40; Wed, 7 Feb 2018 16:14:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1518020076210970" MIME-Version: 1.0 Date: Wed, 7 Feb 2018 16:14:36 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/php To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180207161436.DF059FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1518020076210970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Feb 7 16:14:36 UTC 2018 Modified Files: pkgsrc/lang/php: ext.mk Log Message: php: Remove LIBTOOL_OVERRIDE=YES. This was added 8 years ago intending to ensure pkgsrc libtool was used, except it actually did the opposite. By default we will try to replace any script named "libtool" up to the override depth. Setting LIBTOOL_OVERRIDE changes the behaviour to instead override the list of filenames specified by the LIBTOOL_OVERRIDE variable. Thus we were trying to replace any file named "YES" instead of "libtool". Noticed by SmartOS/clang builds of php-intl which were using the supplied broken libtool script instead of the correct pkgsrc one. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/lang/php/ext.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1518020076210970 Content-Disposition: inline Content-Length: 648 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/php/ext.mk diff -u pkgsrc/lang/php/ext.mk:1.44 pkgsrc/lang/php/ext.mk:1.45 --- pkgsrc/lang/php/ext.mk:1.44 Sat Dec 10 07:08:39 2016 +++ pkgsrc/lang/php/ext.mk Wed Feb 7 16:14:36 2018 @@ -1,4 +1,4 @@ -# $NetBSD: ext.mk,v 1.44 2016/12/10 07:08:39 taca Exp $ +# $NetBSD: ext.mk,v 1.45 2018/02/07 16:14:36 jperkin Exp $ # # PHP extension package framework, for both PECL and bundled PHP extensions. # @@ -72,7 +72,6 @@ CONFIGURE_ARGS+= --with-php-config=${PHP USE_CONFIG_WRAPPER= YES USE_LIBTOOL= YES -LIBTOOL_OVERRIDE= YES USE_TOOLS+= automake # Ensure we export symbols in the linked shared object. --_----------=_1518020076210970--