summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2006-03-02 07:23:18 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2009-04-06 16:08:30 -0500
commitc3d51c14f2fcb15d86fb471bbff34afe520c7252 (patch)
treeadd908709d5f3561e32f2b8d3513755d44927a4c /autogen.sh
parent7b34df33a56cb88a5d8c6c74f7b2ddaf2f562ba3 (diff)
downloadlibpng-c3d51c14f2fcb15d86fb471bbff34afe520c7252.tar.gz
Imported from libpng-1.2.9beta4.tarv1.2.9beta4
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh23
1 files changed, 21 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index e7f1dfeec..98b966a04 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,24 @@
#! /bin/sh
# a quick hack script to generate necessary files from
# auto* tools.
-
-libtoolize -c -f && aclocal && autoheader && automake --foreign -a -c && autoconf
+#
+# WARNING: if you run this you will change the versions
+# of the tools which are used and, maybe, required!
+{
+ echo "running libtoolize" >&2
+ libtoolize --copy --automake
+} && {
+ echo "running aclocal" >&2
+ aclocal
+} && {
+ echo "running autoheader [ignore the warnings]" >&2
+ autoheader
+} && {
+ echo "running automake" >&2
+ automake --foreign -a -c
+} && {
+ echo "running autoconf" >&2
+ autoconf
+} &&
+ echo "autogen complete" >&2 ||
+ echo "ERROR: autogen.sh failed, autogen is incomplete" >&2