mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 09:37:10 -04:00
remove util if empty, for pre 9.7
This commit is contained in:
parent
d8b801bd19
commit
7c87a8bf7b
1 changed files with 3 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: kit.sh,v 1.37 2009/09/08 03:39:30 each Exp $
|
||||
# $Id: kit.sh,v 1.38 2009/09/09 04:27:40 marka Exp $
|
||||
|
||||
# Make a release kit
|
||||
#
|
||||
|
|
@ -120,7 +120,8 @@ rm -rf TODO EXCLUDED conftools doc/design doc/dev doc/expired \
|
|||
bin/tests/system/relay lib/cfg
|
||||
|
||||
# Remove everything but mksymtbl.pl from util
|
||||
find ./util -name mksymtbl.pl -prune -o -type f -print | xargs rm -rf
|
||||
find util -name mksymtbl.pl -prune -o -type f -print | xargs rm -f
|
||||
find util -depth -type d -print | xargs rmdir -p
|
||||
|
||||
# Remove all .cvsignore files
|
||||
find . -name .cvsignore -print | xargs rm
|
||||
|
|
|
|||
Loading…
Reference in a new issue