aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xabe.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/abe.sh b/abe.sh
index 396a3347..e4a68b5e 100755
--- a/abe.sh
+++ b/abe.sh
@@ -592,7 +592,11 @@ set_package()
case ${package} in
buildconfig)
- build_config="${setting}"
+ # Allow --set buildconfig=bootstrap for consistency
+ # with other bootstrap configs.
+ if test x"${setting}" != x"bootstrap"; then
+ build_config="${setting}"
+ fi
bootstrap="yes"
notice "Setting buildconfig to ${setting}"
return 0