diff options
author | joerg <joerg@pkgsrc.org> | 2015-05-04 19:23:19 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2015-05-04 19:23:19 +0000 |
commit | 3d10859f1abde98fdc6c93abea56f750efa1f159 (patch) | |
tree | 89bfe39b0e3585dc0232f85cec89187986502ba8 /mk/configure | |
parent | d7c43f64ab5c57194f390b08484440fc44efd11e (diff) | |
download | pkgsrc-3d10859f1abde98fdc6c93abea56f750efa1f159.tar.gz |
Drop _LIBTOOL and _SHLIBTOOL and make LIBTOOL and SHLIBTOOL point to the
wrapped version by full path. This fixes some cases where the wrappers
have been bypassed. lang/lua52 triggered the investigation as it failed
to link against libreadline, which should have been translated to
libedit. Tested by jperkin and myself with full bulk builds.
Diffstat (limited to 'mk/configure')
-rw-r--r-- | mk/configure/libtool-override.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/configure/libtool-override.mk b/mk/configure/libtool-override.mk index 5519d7f0246..259fdd8e30a 100644 --- a/mk/configure/libtool-override.mk +++ b/mk/configure/libtool-override.mk @@ -1,4 +1,4 @@ -# $NetBSD: libtool-override.mk,v 1.10 2008/02/07 21:36:13 rillig Exp $ +# $NetBSD: libtool-override.mk,v 1.11 2015/05/04 19:23:19 joerg Exp $ ###################################################################### ### {libtool,shlibtool}-override (PRIVATE) @@ -14,8 +14,8 @@ do-configure-post-hook: shlibtool-override OVERRIDE_DIRDEPTH.libtool?= ${OVERRIDE_DIRDEPTH} OVERRIDE_DIRDEPTH.shlibtool?= ${OVERRIDE_DIRDEPTH} -_OVERRIDE_PATH.libtool= ${_LIBTOOL} -_OVERRIDE_PATH.shlibtool= ${_SHLIBTOOL} +_OVERRIDE_PATH.libtool= ${LIBTOOL} +_OVERRIDE_PATH.shlibtool= ${SHLIBTOOL} .for _script_ in libtool shlibtool _SCRIPT.${_script_}-override= \ |