Skip to content

Commit 647fef0

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Install bindep packages when installing lib from src"
2 parents 9208a37 + dd3731c commit 647fef0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

functions-common

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,8 @@ function install_bindep {
14121412
local pkgs
14131413

14141414
if [[ ! -f $file ]]; then
1415-
die $LINENO "Can not find bindep file: $file"
1415+
warn $LINENO "Can not find bindep file: $file"
1416+
return
14161417
fi
14171418

14181419
# converting here makes it much easier to work with passing

lib/libraries

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function _install_lib_from_source {
7272
local name=$1
7373
if use_library_from_git "$name"; then
7474
git_clone_by_name "$name"
75-
setup_dev_lib "$name"
75+
setup_dev_lib -bindep "$name"
7676
fi
7777
}
7878

0 commit comments

Comments
 (0)