forked from Lainports/freebsd-ports
- Update the URL in the package description. - The author hacks a LIBTOOL path into their Makefiles that doesn't work under the ports system. Make it work by a small patch to aclocal.m4 (which requires the addition of USE_AUTOCONF) and passing in the port system's value of LIBTOOL (using a different variable name since they already use LIBTOOL themselves). This was simpler than patching all their Makefiles. PR: ports/30999 Submitted by: Dave Chapeskie <bsdport@ddm.wox.org> Approved by: MAINTAINER
11 lines
301 B
Text
11 lines
301 B
Text
--- aclocal.m4.orig Mon Sep 17 04:25:38 2001
|
|
+++ aclocal.m4 Wed Oct 3 01:50:51 2001
|
|
@@ -213,7 +213,7 @@
|
|
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
|
|
|
|
# Always use our own libtool.
|
|
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
|
+LIBTOOL='$(PORT_LIBTOOL)'
|
|
AC_SUBST(LIBTOOL)dnl
|
|
|
|
# Prevent multiple expansion
|