From 89469efb3b589bfcf1cdb4d1c1dfa8259ffba26d Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Tue, 22 Jan 2019 22:32:04 +0800 Subject: [PATCH] fix devstack bug The build target "install_non_bb" in fm-common/sources/Makefile and fm-mgr/sources/Makefile was renamed to "install" in previous commits, which broke devstack. Update devstack code to fix it. Change-Id: Ib0cea3231c533ca471f4b2fd16c32c20406aa3d9 Closes-Bug: #1812785 Signed-off-by: Yi Wang --- devstack/lib/stx-fault | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devstack/lib/stx-fault b/devstack/lib/stx-fault index 9c78ab39..dd1ee62b 100644 --- a/devstack/lib/stx-fault +++ b/devstack/lib/stx-fault @@ -249,7 +249,7 @@ function install_fm_common { INC_DIR=/include \ MAJOR=$major \ MINOR=$minor \ - install_non_bb + install sudo python setup.py install \ --root=/ \ @@ -291,7 +291,7 @@ function install_fm_mgr { INC_DIR=/include \ MAJOR=$major \ MINOR=$minor \ - install_non_bb + install popd }