aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYichen Wang <yicwang@cisco.com>2019-02-04 22:27:20 -0800
committerYichen Wang <yicwang@cisco.com>2019-02-04 22:27:39 -0800
commit63132185d09b6aa27183d7060763626d13826354 (patch)
tree9cdbcbb22baaa220945cc0bb5f36777a0062e767
parent67d9475ae3586e69356f939b36aefe8d6a6f0009 (diff)
Fix borken install-dep on RHEL
Change-Id: I247cca88e33f782e1acb72eb2c0e1515faf2f030 Signed-off-by: Yichen Wang <yicwang@cisco.com>
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6f79ce52ef3..86ac60c735c 100644
--- a/Makefile
+++ b/Makefile
@@ -295,6 +295,9 @@ endif
else ifneq ("$(wildcard /etc/redhat-release)","")
ifeq ($(OS_ID),rhel)
@sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
+ @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
+ @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
+ @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
else ifeq ($(OS_ID),centos)
@sudo -E yum install $(CONFIRM) centos-release-scl-rh
@sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)