diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-09-27 09:42:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 09:42:43 -0400 |
commit | 9bcf7ce83a7a293a1715e0742bf305df9e1eff11 (patch) | |
tree | 4bb3379f823b67cb31799afd446383e4540c95ab /contrib/python/pypodman/Makefile | |
parent | 407354198169f33a1ebebca3ae47d5d0c34d9b42 (diff) | |
parent | 356765aa959626d0d027484b2797958c24fe3c15 (diff) | |
download | podman-9bcf7ce83a7a293a1715e0742bf305df9e1eff11.tar.gz podman-9bcf7ce83a7a293a1715e0742bf305df9e1eff11.tar.bz2 podman-9bcf7ce83a7a293a1715e0742bf305df9e1eff11.zip |
Merge pull request #818 from wking/python-2-clean
Makefile: Call contrib/python's clean regardless of HAS_PYTHON3
Diffstat (limited to 'contrib/python/pypodman/Makefile')
-rw-r--r-- | contrib/python/pypodman/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/pypodman/Makefile b/contrib/python/pypodman/Makefile index 8c9691996..cd0fcf1de 100644 --- a/contrib/python/pypodman/Makefile +++ b/contrib/python/pypodman/Makefile @@ -1,4 +1,4 @@ -PYTHON ?= /usr/bin/python3 +PYTHON ?= $(shell command -v python3 2>/dev/null || command -v python) DESTDIR := / PODMAN_VERSION ?= '0.0.4' @@ -31,7 +31,7 @@ clobber: uninstall clean .PHONY: clean clean: - $(PYTHON) setup.py clean --all rm -rf pypodman.egg-info dist find . -depth -name __pycache__ -exec rm -rf {} \; find . -depth -name \*.pyc -exec rm -f {} \; + $(PYTHON) ./setup.py clean --all |