From a7132f74fd7b7d0558ca80808d156a7f9e5b64bb Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 24 Feb 2003 04:37:04 +0000 Subject: [PATCH] Always use the libtool which is build in the top_builddir. --- acinclude.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index e776f1584d..0e0506acc8 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1100,7 +1100,11 @@ dnl dnl Set libtool variable dnl AC_DEFUN([PHP_SET_LIBTOOL_VARIABLE],[ - LIBTOOL='$(SHELL) libtool $1' + if test -z $LIBTOOL; then + LIBTOOL='$(SHELL) $(top_builddir)/libtool $1' + else + LIBTOOL="$LIBTOOL $1" + fi ]) dnl -- 2.50.1