OSDN Git Service

Removed clean.sh script. Using git now, we don't need it anymore (git clean -d -x).
authorDavid Cantrell <dcantrel@mortise.boston.redhat.com>
Wed, 9 May 2007 20:45:38 +0000 (16:45 -0400)
committerOtavio Salvador <otavio@ossystems.com.br>
Mon, 14 May 2007 16:22:06 +0000 (13:22 -0300)
scripts/release/clean.sh [deleted file]

diff --git a/scripts/release/clean.sh b/scripts/release/clean.sh
deleted file mode 100755 (executable)
index 6bb52fc..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-# Clean tree of unmanaged files after a 'make distclean'
-
-if [ ! -d parted ] && [ ! -d libparted ]; then
-       echo "Run this from the toplevel parted directory."
-       exit 1
-fi
-
-rm -rf ChangeLog doc/mdate-sh doc/texinfo.tex
-rm -rf m4 configure config.rpath depcomp
-rm -rf parted-*.*.*
-rm -rf compile config.guess config.sub ltmain.sh mkinstalldirs
-rm -rf config.h.in autom4te.cache missing aclocal.m4 install-sh
-rm -rf doc/stamp-vti doc/version.texi doc/parted.info
-rm -rf ABOUT-NLS INSTALL
-
-rm -rf po/*.gmo po/stamp-po po/Makevars.template po/Rules-quot
-rm -rf po/Makefile.in.in
-
-find . -type f -name Makefile.in | xargs rm -f
-
-exit 0