summaryrefslogtreecommitdiffstats
path: root/docker/scripts/lib_vpp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/scripts/lib_vpp.sh')
-rw-r--r--docker/scripts/lib_vpp.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/docker/scripts/lib_vpp.sh b/docker/scripts/lib_vpp.sh
index 8b9c91dc8..7bae93afd 100644
--- a/docker/scripts/lib_vpp.sh
+++ b/docker/scripts/lib_vpp.sh
@@ -46,12 +46,9 @@ make_vpp() {
return
fi
git clean -qfdx
- description="'make UNATTENDED=y $target' in $(pwd) ($branch)"
+ description="'make UNATTENDED=yes $target' in $(pwd) ($branch)"
echo_log -e " Starting $description..."
- local force_opts="--allow-downgrades --allow-remove-essential"
- force_opts="$force_opts --allow-change-held-packages"
- make UNATTENDED=y CONFIRM="-y" FORCE="$force_opts" \
- $target 2>&1 | tee -a "$bld_log"
+ make UNATTENDED=yes $target 2>&1 | tee -a "$bld_log"
git checkout -q -- .
echo_log " Completed $description!"
}