fixed python3 specific dependency issue for fpm definition

This commit is contained in:
bharnden 2019-06-08 22:46:21 -07:00
parent d37db217b5
commit 756f8fd3e9

View file

@ -46,7 +46,7 @@ MAINTAINERCLEANFILES = .version \
if PYTHON3
PYTHON_DEP = python >= 3.0
PYTHON_DEP = python3 >= 3.0
else
PYTHON_DEP = python >= 2.7, python < 3.0
endif