diff options
author | jperkin <jperkin@pkgsrc.org> | 2018-02-07 16:14:36 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2018-02-07 16:14:36 +0000 |
commit | 6e1c09ae9e506aced14abcbf687aff01beabb617 (patch) | |
tree | b84a50c4fa6cea3f0bdd3b78cd6952053edd703b /lang | |
parent | 00e516dc100c606298bc9ffd47394783f0787e22 (diff) | |
download | pkgsrc-6e1c09ae9e506aced14abcbf687aff01beabb617.tar.gz |
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.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/php/ext.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/php/ext.mk b/lang/php/ext.mk index 07c8b2b6cc9..9204b761e92 100644 --- a/lang/php/ext.mk +++ b/lang/php/ext.mk @@ -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_CONFIG} USE_CONFIG_WRAPPER= YES USE_LIBTOOL= YES -LIBTOOL_OVERRIDE= YES USE_TOOLS+= automake # Ensure we export symbols in the linked shared object. |