Fix src component detection

Reviewed by:	emaste
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D21579
This commit is contained in:
Michael Gmelin 2019-09-19 21:13:51 +00:00
parent 20674acb70
commit 12294db4ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352542

View File

@ -220,6 +220,14 @@ config_KeepModifiedMetadata () {
# Add to the list of components which should be kept updated.
config_Components () {
for C in $@; do
COMPONENTS="${COMPONENTS} ${C}"
done
}
# Remove src component from list if it isn't installed
finalize_components_config () {
COMPONENTS=""
for C in $@; do
if [ "$C" = "src" ]; then
if [ -e "${BASEDIR}/usr/src/COPYRIGHT" ]; then
@ -3284,6 +3292,7 @@ get_params () {
parse_cmdline $@
parse_conffile
default_params
finalize_components_config ${COMPONENTS}
}
# Fetch command. Make sure that we're being called