Update build script to pass --skip_deps when called with --no-deps-check (#1461)
This commit is contained in:
committed by
Otto van der Schaaf
parent
76500396ff
commit
65761a2393
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user