aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJon Loeliger <jdl@netgate.com>2018-01-24 13:47:46 -0600
committerJon Loeliger <jdl@netgate.com>2018-01-24 13:47:46 -0600
commit28227ad31625d780cf759bcf9107314af5dc578f (patch)
tree361ae68c3cc51ebed717536d937cefb3268871a5 /Makefile
parent191a59401c0552e5ea79041f34456eb9fcc1f311 (diff)
Makefile: Add python-ply to RPM_DEPENDS list.
Change-Id: I1bbb29ec2303f87c0053691fc157a747bff1626d Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 06c291b346e..18494e732fe 100644
--- a/Makefile
+++ b/Makefile
@@ -88,17 +88,17 @@ RPM_DEPENDS += subunit subunit-devel
ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
RPM_DEPENDS += openssl-devel
- RPM_DEPENDS += python-devel
+ RPM_DEPENDS += python-devel python-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
+ RPM_DEPENDS += python2-devel python-ply
RPM_DEPENDS += python2-virtualenv
RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
else
RPM_DEPENDS += openssl-devel
- RPM_DEPENDS += python-devel
+ RPM_DEPENDS += python-devel python-ply
RPM_DEPENDS += python-virtualenv
RPM_DEPENDS_GROUPS = 'Development Tools'
endif