]> Pileus Git - ~andy/fetchmail/commitdiff
Remove old autogen.sh.
authorMatthias Andree <matthias.andree@gmx.de>
Sun, 20 Jun 2004 09:28:56 +0000 (09:28 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Sun, 20 Jun 2004 09:28:56 +0000 (09:28 -0000)
svn path=/trunk/; revision=3910

autogen.sh [deleted file]
bootstrap.sh

diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755 (executable)
index 0e9d52a..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-#
-# autogen.sh glue for fetchmail
-# $Id: autogen.sh,v 1.1 2001/05/12 08:03:50 esr Exp $
-#
-set -e
-
-#
-# Refresh GNU gettext, but do not allow symlinks
-#
-rm -f po/Makefile.in.in po/ChangeLog po/ChangeLog~ || true
-gettextize -c -f || true
-
-# The idea is that we make sure we're always using an up-to-date
-# version of all the auto* script chain for the build. The GNU autotools
-# are rather badly designed in that area.
-
-aclocal
-autoheader
-#automake --verbose --foreign --add-missing
-
-#we don't use symlinks because of debian's build system,
-#but they would be a better choice.
-for i in config.guess config.sub missing install-sh mkinstalldirs ; do
-       test -r /usr/share/automake/${i} && cp -f /usr/share/automake/${i} .
-       chmod 755 ${i}
-done
-
-autoconf
-
-#
-# For the Debian build, refresh list of +x scripts, to avoid
-# possible breakage if upstream tarball does not include the file
-# or if it is mispackaged for whatever reason
-#
-
-test -d debian && {
-       rm -f debian/executable.files
-       find -type f -perm +111 ! -name '.*' -fprint debian/executable.files
-}
-
-exit 0
index 4503c596f4a1829b522ecf386469e4cc6a9690d6..4202e5eec2d6818820c5d491129b87609970d178 100755 (executable)
@@ -10,10 +10,28 @@ test -f fetchmail.c
 test -f Makefile.am
 rm -rf autom4te.cache
 echo
-echo "Please stand by while generating files with autoreconf, this may"
-echo "take a minute or two..."
+echo "Please stand by while generating files,"
+echo "this may take a minute or two..."
 echo
-autoreconf -isv
+# Original autogen.sh:
+#rm -f po/Makefile.in.in po/ChangeLog po/ChangeLog~ || true
+#gettextize -c -f || true
+
+# do not use -s here, Eric S. Raymond (ESR) writes they don't
+# work well in Debian's build system
+autoreconf -iv
+
+# Taken from ESR's autgen.sh:
+#
+# For the Debian build, refresh list of +x scripts, to avoid
+# possible breakage if upstream tarball does not include the file
+# or if it is mispackaged for whatever reason
+#
+test -d debian && {
+       rm -f debian/executable.files
+       find -type f -perm +111 ! -name '.*' -fprint debian/executable.files
+}
+
 echo
 echo "You can now run ./configure and make as usual. See INSTALL for details."
 echo