summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMarcus Brinkmann <mb@g10code.com>2001-10-22 15:39:34 +0000
committerMarcus Brinkmann <mb@g10code.com>2001-10-22 15:39:34 +0000
commit44ba56ca730b13d8573fb16da0aa5a68cff0008c (patch)
tree6dc44aedeabf0d7d512c2f7a42ee9eded46b2317 /autogen.sh
parent4691a5e940541b3fe8c78102e96caa9c8ae398e4 (diff)
downloadgpgme-44ba56ca730b13d8573fb16da0aa5a68cff0008c.tar.gz
2001-10-22 Marcus Brinkmann <marcus@g10code.de>
* autogen.sh: Invoke automake with `-a' (add missing files). Do not invoke configure.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh16
1 files changed, 2 insertions, 14 deletions
diff --git a/autogen.sh b/autogen.sh
index cf24171a..aca98064 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -143,19 +143,7 @@ echo "Running aclocal..."
aclocal
echo "Running autoheader..."
autoheader
-echo "Running automake --gnu ..."
-automake --gnu;
+echo "Running automake --gnu -a ..."
+automake --gnu -a
echo "Running autoconf..."
autoconf
-
-if test "$*" = ""; then
- conf_options="--enable-maintainer-mode"
-else
- conf_options=$*
-fi
-echo "Running ./configure $conf_options"
-./configure $conf_options
-
-
-
-