summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrel@mortise.boston.redhat.com>2007-05-09 16:45:38 -0400
committerOtavio Salvador <otavio@ossystems.com.br>2007-05-14 13:22:06 -0300
commitf871e71df727373013d3cf04bf198a49f09b50e4 (patch)
tree60e1d570ed5c79f89f96909e848ef9c6084d62cc /scripts
parente6bdd6a9aac212be9779161dbddab8a410347426 (diff)
downloadparted-f871e71df727373013d3cf04bf198a49f09b50e4.tar.gz
Removed clean.sh script. Using git now, we don't need it anymore (git clean -d -x).
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release/clean.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/release/clean.sh b/scripts/release/clean.sh
deleted file mode 100755
index 6bb52fc..0000000
--- a/scripts/release/clean.sh
+++ /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