diff options
author | Ryan Lortie <desrt@desrt.ca> | 2012-08-13 23:34:15 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2012-08-20 17:25:42 -0400 |
commit | 3e6f74ac21e0b7ed3a842ccbd4cc9459b6620ded (patch) | |
tree | e3a0674b9b7e2b914174211cd310887cf4b46141 /autogen.sh | |
parent | 14ee7d6d4b60c7bd0065701f0b18467e56cc207a (diff) | |
download | dconf-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-x | autogen.sh | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 - |