diff options
author | Thomas F Herbert <therbert@redhat.com> | 2017-08-31 10:22:57 -0400 |
---|---|---|
committer | Thomas F Herbert <therbert@redhat.com> | 2017-08-31 12:31:52 -0400 |
commit | da78c85c5504f0a429d1feb57b6789254f60177d (patch) | |
tree | c455f789b853a8c1a230ce2ddc2c91be54d25b61 /Makefile | |
parent | 3ea5eeb35266e5278c1e4e226e53edaaadd74662 (diff) |
Add explicit check for Fedora.
Change-Id: I0a5aece190ccc82f0f840e3bc75e1d27433f5b47
Signed-off-by: Thomas F Herbert <therbert@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25) RPM_DEPENDS += python-devel RPM_DEPENDS += python2-virtualenv RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' -else ifeq ($(shell test $($(OS_VERSION_ID) -gt 25; echo $$?)),0) +else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0) RPM_DEPENDS += python2-devel RPM_DEPENDS += python2-virtualenv RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' |