summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_clean.subr
blob: bd0e1d931d16488fd1a4bdae3212b3a8d463364f (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# . ./build.vars and set -o errexit -o noglob are assumed.
# See warning at the top of build.vars.
#

pkg_clean() {
	make clean;
	set_build_script_done clean -build;
};

# vim:filetype=sh