aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2020-12-08 10:50:08 -0500
committerDave Wallace <dwallacelf@gmail.com>2020-12-08 21:05:31 +0000
commita23dd5dbb5cde4cb12b3d7b0bed8156e2ff7e6b5 (patch)
treebf3669b5b7e0b3110a8c5c7e3b8687c256a947b0 /Makefile
parent7847f172a3e1f345dd9c2a91ab4caed1fa85dec7 (diff)
build: fix centos-8 'make install-deps' enable PowerTools repo
- The name of the powertools repo was changed [0] in centos-8 from 'PowerTools' to 'powertools'. Retrieve the correct name from 'dnf repolist all' instead of hard coding it. [0] https://git.centos.org/rpms/centos-repos/c/b759b17557b9577e8ea156740af0249ab1a22d70 Type: fix Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: Ic1402e671eb1d70dec429bab82ad18d8251f4eef (cherry picked from commit 1affb31ef528dcbc90b718bd70a9882a4225a385)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 268c87f3235..6b5f50a7af4 100644
--- a/Makefile
+++ b/Makefile
@@ -286,7 +286,8 @@ ifeq ($(OS_ID),rhel)
@sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
@sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release
- @sudo -E dnf config-manager --set-enabled PowerTools
+ @sudo -E dnf config-manager --set-enabled \
+ $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1)
@sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
@sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
else ifeq ($(OS_ID),centos)