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 <yi.c.wang@intel.com>
This commit is contained in:
Yi Wang 2019-01-22 22:32:04 +08:00
parent 845f41a85c
commit 89469efb3b
1 changed files with 2 additions and 2 deletions

View File

@ -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
}