diff --git a/functions-common b/functions-common index 6595c3de53..d99ad9212f 100644 --- a/functions-common +++ b/functions-common @@ -1412,7 +1412,8 @@ function install_bindep { local pkgs if [[ ! -f $file ]]; then - die $LINENO "Can not find bindep file: $file" + warn $LINENO "Can not find bindep file: $file" + return fi # converting here makes it much easier to work with passing diff --git a/lib/libraries b/lib/libraries index b4f3c31d5e..c7aa8151ae 100644 --- a/lib/libraries +++ b/lib/libraries @@ -72,7 +72,7 @@ function _install_lib_from_source { local name=$1 if use_library_from_git "$name"; then git_clone_by_name "$name" - setup_dev_lib "$name" + setup_dev_lib -bindep "$name" fi }