mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
13 lines
244 B
Bash
Executable File
13 lines
244 B
Bash
Executable File
#! /bin/sh
|
|
# $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
|
|
|