forked from pool/sanlock
- Update to sanlock 3.7.1 - Fix bugs in read_resource_owners OBS-URL: https://build.opensuse.org/request/show/694649 OBS-URL: https://build.opensuse.org/package/show/Virtualization/sanlock?expand=0&rev=51
31 lines
808 B
Diff
31 lines
808 B
Diff
commit d4fc2914b1847202d9dc26df89954766b27921d6
|
|
Author: Jim Fehlig <jfehlig@suse.com>
|
|
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
|