From 7d43e7c451d79c0e110bdb60a398ad083720c48b Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 6 Aug 2018 08:45:12 -0400 Subject: Pass DESTDIR down to python Makefile In order to get a cleaner build out of the rpms we should pass down the DESTDIR to the python Makefiles. Then we can use them instead of hard coding other inteligence into the spec files. Signed-off-by: Daniel J Walsh Closes: #1214 Approved by: baude --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f02a36715..fecf3831f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ GO ?= go +DESTDIR ?= / EPOCH_TEST_COMMIT ?= 7462ebe830b256e9e145d133c824de5dfd23045d HEAD ?= HEAD CHANGELOG_BASE ?= HEAD~ @@ -240,8 +241,8 @@ install.systemd: install ${SELINUXOPT} -m 644 -D contrib/varlink/podman.conf ${TMPFILESDIR}/podman.conf install.python: - $(MAKE) -C contrib/python/podman install - $(MAKE) -C contrib/python/pypodman install + $(MAKE) DESTDIR=${DESTDIR} -C contrib/python/podman install + $(MAKE) DESTDIR=${DESTDIR} -C contrib/python/pypodman install uninstall: for i in $(filter %.1,$(MANPAGES)); do \ -- cgit v1.2.3-54-g00ecf