commit d4fc2914b1847202d9dc26df89954766b27921d6 Author: Jim Fehlig Date: Thu Mar 21 11:20:29 2019 -0600 Revert "python: Fix build on Fedora 29" This reverts commit 5d535c0d800a84665879f6dc50c87915cf6657da. We don't want it on SUSE where there is no python2. Index: sanlock-3.7.1/python/Makefile =================================================================== --- sanlock-3.7.1.orig/python/Makefile +++ sanlock-3.7.1/python/Makefile @@ -5,13 +5,13 @@ # of the GNU General Public License v.2. all: - python2 setup.py build + python setup.py build inplace: - python2 setup.py build_ext --inplace + python setup.py build_ext --inplace install: - python2 setup.py install --root=$(DESTDIR) + python setup.py install --root=$(DESTDIR) clean: rm -rf build