aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGabriel Ganne <gabriel.ganne@enea.com>2018-01-25 10:03:13 +0100
committerGabriel Ganne <gabriel.ganne@enea.com>2018-01-25 10:05:18 +0100
commitb295782c0261f4580fcb8ba4b8d22651bb30b471 (patch)
tree3c18ec75333039003e444cf21f7a9e2faeacc872 /Makefile
parentda38715fa9ffaa3f8952738606161066ed2e6a4c (diff)
fixup python ply package name for fedora >= 25
package name is: * python-ply for centos7/rhel7 * python2-ply / python3-ply for fedora >= 25 Change-Id: Id021802a46a0cc29e9db57e18841a76575437002 Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18494e732fe..1a8ef6e4bca 100644
--- a/Makefile
+++ b/Makefile
@@ -88,12 +88,12 @@ RPM_DEPENDS += subunit subunit-devel
ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
RPM_DEPENDS += openssl-devel
- RPM_DEPENDS += python-devel python-ply
+ RPM_DEPENDS += python-devel python2-ply
RPM_DEPENDS += python2-virtualenv
RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
RPM_DEPENDS += compat-openssl10-devel
- RPM_DEPENDS += python2-devel python-ply
+ RPM_DEPENDS += python2-devel python2-ply
RPM_DEPENDS += python2-virtualenv
RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
else