diff options
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/cleanup | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bootstrap/cleanup b/bootstrap/cleanup index 2e06e206eef..fade1b4efd6 100755 --- a/bootstrap/cleanup +++ b/bootstrap/cleanup @@ -1,7 +1,12 @@ #! /bin/sh -# $NetBSD: cleanup,v 1.8 2005/05/15 10:55:06 rillig Exp $ +# $NetBSD: cleanup,v 1.9 2009/05/17 23:44:48 billc Exp $ wrkdir=${1:-work} rm -f -r "$wrkdir" rm -f Makefile.inc mk.conf.example */config.cache + +# Also clean up from people who run testbootstrap +rm -rf .db pkg +rm -f BOOTSTRAP.LOG + |