X-Git-Url: https://pwan.org/git/?a=blobdiff_plain;f=Makefile;fp=Makefile;h=2f83003d6e5ff25e359cfb90bde4a79ed925f629;hb=9297dabe6c1511bb36a669b505f5586e420b608f;hp=45f3e862710c0fa415944c22c2505d8d7047d18e;hpb=cd13dd2c5c5e85461ac5b19aa48480d1ef80b94b;p=certmaster.git diff --git a/Makefile b/Makefile index 45f3e86..2f83003 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ VERSION = $(shell echo `awk '{ print $$1 }' version`) RELEASE = $(shell echo `awk '{ print $$2 }' version`) NEWRELEASE = $(shell echo $$(($(RELEASE) + 1))) +PYTHON = /usr/bin/python MESSAGESPOT=po/messages.pot @@ -31,7 +32,7 @@ setversion: -echo "$(VERSION) $(RELEASE)" > version build: clean - python setup.py build -f + $(PYTHON) setup.py build -f clean: -rm -f MANIFEST @@ -42,7 +43,7 @@ clean: -for d in $(DIRS); do ($(MAKE) -C $$d clean ); done clean_hard: - -rm -rf $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")/certmaster + -rm -rf $(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")/certmaster clean_harder: -rm -rf /etc/pki/certmaster @@ -53,7 +54,7 @@ clean_hardest: clean_rpms install: build manpage - python setup.py install -f + $(PYTHON) setup.py install -f install_hard: clean_hard install @@ -73,7 +74,7 @@ clean_rpms: -rpm -e certmaster sdist: messages - python setup.py sdist + $(PYTHON) setup.py sdist new-rpms: bumprelease rpms