diff options
Diffstat (limited to 'contrib/python/pypodman/Makefile')
-rw-r--r-- | contrib/python/pypodman/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/python/pypodman/Makefile b/contrib/python/pypodman/Makefile index 6bc5b968b..fb25776fa 100644 --- a/contrib/python/pypodman/Makefile +++ b/contrib/python/pypodman/Makefile @@ -1,4 +1,5 @@ PYTHON ?= /usr/bin/python3 +DESTDIR := / .PHONY: python-pypodman python-pypodman: @@ -14,7 +15,7 @@ integration: .PHONY: install install: - $(PYTHON) setup.py install + $(PYTHON) setup.py install --root ${DESTDIR} .PHONY: clobber clobber: uninstall clean |