aboutsummaryrefslogtreecommitdiff
path: root/Mk/bsd.autotools.mk
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2007-03-24 14:02:06 +0000
committerPav Lucistnik <pav@FreeBSD.org>2007-03-24 14:02:06 +0000
commit65e107ab6988c9b2d4d980917430d8ab0cfee665 (patch)
tree19322057de195ba994b5e8d364fcb6eddc03508f /Mk/bsd.autotools.mk
parent134d97e1fd2201b9a28717e8ed461675a246e1cc (diff)
downloadports-65e107ab6988c9b2d4d980917430d8ab0cfee665.tar.gz
ports-65e107ab6988c9b2d4d980917430d8ab0cfee665.zip
[1] Introduce COPYTREE_BIN and COPYTREE_SHARE macros
[2] Fix ECHO_CMD/ECHO_MSG usage in bsd.port.mk [3] Move bsd.efl.mk to ports/Mk [4] Change LIBTOOLFILES default to ${CONFIGURE_SCRIPT} [5] Whitespace sweep [6] Add WWWDIR variable with default value of ${PREFIX}/www/${PORTNAME} PR: ports/100996 [1], ports/100556 [2], ports/100497 [3], ports/104009 and ports/104018 [5], ports/105529 [6] Submitted by: stass [1] [3], gabor [2], pav [4], edwin [5], laszlof [6] Approved by: ade [4]
Notes
Notes: svn path=/head/; revision=188170
Diffstat (limited to 'Mk/bsd.autotools.mk')
-rw-r--r--Mk/bsd.autotools.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/Mk/bsd.autotools.mk b/Mk/bsd.autotools.mk
index ecd69ad14561..41ad8cdb5441 100644
--- a/Mk/bsd.autotools.mk
+++ b/Mk/bsd.autotools.mk
@@ -64,7 +64,8 @@ Autotools_Include_MAINTAINER= ade@FreeBSD.org
#
# LIBTOOLFILES=<list-of-files>
# - A list of files to patch during libtool pre-configuration
-# Defaults to "aclocal.m4" if autoconf is in use, otherwise "configure"
+# Defaults to "aclocal.m4" if autoconf is in use, otherwise
+# ${CONFIGURE_SCRIPT} (usually "configure")
#
#---------------------------------------------------------------------------
@@ -210,7 +211,7 @@ LIBTOOLFLAGS?= # default to empty
. if defined(AUTOTOOL_autoconf)
LIBTOOLFILES?= aclocal.m4
. else
-LIBTOOLFILES?= configure
+LIBTOOLFILES?= ${CONFIGURE_SCRIPT}
. endif
.endif