summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2012-08-13 23:34:15 -0400
committerRyan Lortie <desrt@desrt.ca>2012-08-20 17:25:42 -0400
commit3e6f74ac21e0b7ed3a842ccbd4cc9459b6620ded (patch)
treee3a0674b9b7e2b914174211cd310887cf4b46141 /autogen.sh
parent14ee7d6d4b60c7bd0065701f0b18467e56cc207a (diff)
downloaddconf-3e6f74ac21e0b7ed3a842ccbd4cc9459b6620ded.tar.gz
autogen.sh: remove 'autogen clean' feature
This isn't really useful when we have 'git clean'.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index c929f33..3973ddf 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,12 +8,6 @@ test -n "$srcdir" || srcdir=.
olddir=`pwd`
cd "$srcdir"
-if [ "$1" = "clean" ]; then
- rm -f aclocal.m4 configure config.* `find . -name Makefile.in` libtool
- rm -rf autom4te.cache m4 aux
- exit
-fi
-
if automake-1.11 --version &> /dev/null; then
automake_suffix='-1.11'
else
@@ -37,4 +31,3 @@ cd "$olddir"
if test -z "$NOCONFIGURE"; then
"$srcdir"/configure "$@"
fi
-