Codebase list rust-libslirp / 581335d
build.sh: allow one to ignore missing build-deps Ximin Luo 5 years ago
1 changed file(s) with 3 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
5555 }
5656
5757 if ! check_build_deps; then
58 abort 1 "Missing build-dependencies, but maybe try '{apt,cargo} update'"
58 if [ "$IGNORE_MISSING_BUILD_DEPS" != 1 ]; then
59 abort 1 "Missing build-dependencies, but maybe try '{apt,cargo} update'"
60 fi
5961 fi
6062
6163 if [ "$SOURCEONLY" = 1 ]; then