diff options
author | Igor Mikhailov (imichail) <imichail@cisco.com> | 2017-05-04 00:09:42 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-05-06 01:46:42 +0000 |
commit | 1989bce006a28781156a61ced693775a6f5aba95 (patch) | |
tree | b03b246459e328e9a845d5fcfeaf823c27ac10ca /Makefile | |
parent | 9e3e361eb1d400e79303126f245ae6152ae029cd (diff) |
lcov is an EPEL rpm (at least for Centos)
Change-Id: I064a78df6a2cf734bb7c54f80682690c203a0a98
Signed-off-by: Igor Mikhailov (imichail) <imichail@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -56,9 +56,14 @@ ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25) else RPM_DEPENDS += python-virtualenv endif -RPM_DEPENDS += lcov chrpath libffi-devel +RPM_DEPENDS += chrpath libffi-devel RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm EPEL_DEPENDS = libconfuse-devel ganglia-devel epel-rpm-macros +ifeq ($(OS_ID),centos) + EPEL_DEPENDS += lcov +else + RPM_DEPENDS += lcov +endif ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |