diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-06-20 09:28:56 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-06-20 09:28:56 +0000 |
commit | 85c93ddaca632144b14667e1c66aa14436d1a8f3 (patch) | |
tree | 508b23cb8652a19b11ecd885798db0598f19c5b3 /autogen.sh | |
parent | 6c8395fd74325ff0ee9a2f7f4f93459615a8467d (diff) | |
download | fetchmail-85c93ddaca632144b14667e1c66aa14436d1a8f3.tar.gz fetchmail-85c93ddaca632144b14667e1c66aa14436d1a8f3.tar.bz2 fetchmail-85c93ddaca632144b14667e1c66aa14436d1a8f3.zip |
Remove old autogen.sh.
svn path=/trunk/; revision=3910
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 0e9d52a5..00000000 --- a/autogen.sh +++ /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 |