aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/autogen.sh
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1999-02-13 11:19:14 +0000
committerWerner Koch <[email protected]>1999-02-13 11:19:14 +0000
commit54629f721b429256c3586ecfdbf3b5b97963fe35 (patch)
tree8728f0d7f5c9aed997a1c1ab279f39993e197db4 /scripts/autogen.sh
parentremoved gettext (diff)
downloadgnupg-54629f721b429256c3586ecfdbf3b5b97963fe35.tar.gz
gnupg-54629f721b429256c3586ecfdbf3b5b97963fe35.zip
See ChangeLog: Sat Feb 13 12:14:42 CET 1999 Werner Koch
Diffstat (limited to 'scripts/autogen.sh')
-rwxr-xr-xscripts/autogen.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/scripts/autogen.sh b/scripts/autogen.sh
index 813786c7f..c49e81371 100755
--- a/scripts/autogen.sh
+++ b/scripts/autogen.sh
@@ -46,17 +46,22 @@ if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
fi
-
if test "$DIE" = "yes"; then
exit 1
fi
+echo "Running gettextize... Ignore non-fatal messages."
+echo "no" | gettextize --force
+
+echo "Running aclocal..."
aclocal
+echo "Running autoheader..."
autoheader
+echo "Running automake --gnu ..."
automake --gnu;
-autoheader
+echo "Running autoconf..."
autoconf
-echo "Ready to run ./configure"
+echo "You can now run \"./configure\" and then \"make\"."