xbps-src/shutils/common.sh: actively unset disabled build options to override default values.

This commit is contained in:
Christian Neukirchen 2015-03-18 16:14:51 +01:00
parent 3357bcbc9a
commit be94bdd70a

View file

@ -128,6 +128,8 @@ set_build_options() {
optval=${options[$f]}
if [[ $optval -eq 1 ]]; then
eval export build_option_${f}=1
else
eval unset build_option_${f}
fi
done