Fix nasm deps for Fedora.
Fedora 24 and 25 distro already includes nasm 2.12 but Centos does not as yet. Change-Id: I060ea8b7b7892ac8444d850398ed1c9100631fbc Signed-off-by: Thomas F Herbert <therbert@redhat.com>
This commit is contained in:
Thomas F Herbert
committed by
Sergio Gonzalez Monroy
parent
3cbfbd9e74
commit
d185427282
6
Makefile
6
Makefile
@ -62,7 +62,11 @@ else
|
||||
RPM_DEPENDS_GROUPS = 'Development Tools'
|
||||
endif
|
||||
RPM_DEPENDS += chrpath libffi-devel rpm-build
|
||||
RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm
|
||||
ifeq ($(OS_ID),fedora)
|
||||
RPM_DEPENDS += nasm
|
||||
else
|
||||
RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm
|
||||
endif
|
||||
EPEL_DEPENDS = libconfuse-devel ganglia-devel epel-rpm-macros
|
||||
ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID))
|
||||
EPEL_DEPENDS += lcov
|
||||
|
Reference in New Issue
Block a user