summary refs log tree commit diff stats
path: root/autogen.sh
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-07-26 11:55:37 -0700
committerTingPing <tngpng@gmail.com>2013-07-26 11:55:37 -0700
commit1fd94e79b90b25d3b78c8a7468acbfb4a0d47dd7 (patch)
tree5aec1ed2b59103e048292aa77738622651f202a1 /autogen.sh
parentbb3cb269c21e4f3dbde0ee1fdbdad627c57eba8b (diff)
parente63ec01089a53facfe55e33e8dd90ff7f853eb38 (diff)
Merge pull request #679 from hasufell/libtool
MAKE: backwards compat for old libtool
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 7a640a56..607aa949 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -78,7 +78,7 @@ if test "$?" != "0"; then
 	exit 2
 fi
 echo running libtoolize...
-libtoolize --force
+libtoolize --copy --force --install
 if test "$?" != "0"; then
 	echo libtoolize failed, stopping.
 	exit 3
@@ -90,7 +90,7 @@ if test "$?" != "0"; then
 	exit 4
 fi
 echo running $AUTOMAKE...
-$AUTOMAKE -a
+$AUTOMAKE -a -c
 if test "$?" != "0"; then
 	echo automake failed, stopping.
 	exit 5