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

pkg_distclean() {
	if [ "${PKG_SUBDIR}" != "${PKG_BUILD_DIR}" ]; then
		build_fileop rm ${PKG_BUILD_DIR};
		build_fileop mkdir ${PKG_BUILD_DIR};
	fi;
	set_build_script_done distclean -configure;
};

# vim:filetype=sh