/
githubmirror
/
parted
Обзор
Документация
Войти
/
githubmirror
/
parted
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.8.3
scripts/release/clean.sh
22 строки
640 B
David Cantrell
Remove ChangeLog, doc/mdate-sh, and doc/texinfo.tex since they are unmanaged files and get generated automatically at release time.
04 дек 2006, 04:31
04 дек 2006, 04:31
be1a157
Код
Авторство
О чём код?
#!/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