Update build script to pass --skip_deps when called with --no-deps-check (#1461)

This commit is contained in:
PikachuEXE
2017-08-31 23:53:41 +08:00
committed by Otto van der Schaaf
parent 76500396ff
commit 65761a2393
+7 -1
View File
@@ -634,7 +634,13 @@ Not deleting $directory; name is suspiciously short. Something is wrong."
run make apache_debug_psol run make apache_debug_psol
PSOL_BINARY="$MOD_PAGESPEED_DIR/out/$BUILD_TYPE/pagespeed_automatic.a" PSOL_BINARY="$MOD_PAGESPEED_DIR/out/$BUILD_TYPE/pagespeed_automatic.a"
else else
run install/build_psol.sh --skip_tests --skip_packaging if "$DO_DEPS_CHECK"; then
skip_deps_arg = ""
else
skip_deps_arg = "--skip_deps"
fi
run install/build_psol.sh --skip_tests --skip_packaging "$skip_deps_arg"
PSOL_BINARY="$MOD_PAGESPEED_DIR/pagespeed/automatic/pagespeed_automatic.a" PSOL_BINARY="$MOD_PAGESPEED_DIR/pagespeed/automatic/pagespeed_automatic.a"
fi fi
run popd run popd