diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-06-20 16:01:50 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-06-20 16:01:50 +0000 |
commit | 1bf1f3378d5c3d38e79a538157b6045def0564fe (patch) | |
tree | 75c373002eb63ccd7560035df226c1b41996b9d3 | |
parent | a30b4ad7ee6609f661f1738254cb229ecf6f741e (diff) | |
download | fetchmail-1bf1f3378d5c3d38e79a538157b6045def0564fe.tar.gz fetchmail-1bf1f3378d5c3d38e79a538157b6045def0564fe.tar.bz2 fetchmail-1bf1f3378d5c3d38e79a538157b6045def0564fe.zip |
Allow user to override autoreconf through setting
the AUTORECONF variable in his environment.
svn path=/trunk/; revision=3917
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -8,18 +8,22 @@ set -e test -f fetchmail.h test -f fetchmail.c test -f Makefile.am + +# kill junk: rm -rf autom4te.cache + echo echo "Please stand by while generating files," echo "this may take a minute or two..." echo + # 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 +${AUTORECONF:=autoreconf} -iv # Taken from ESR's autgen.sh: # |