From 32f0fa59c0136f526053e5fbc3062b8e1b83c77e Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 6 Feb 2006 06:16:35 +0000 Subject: r13363: Honour the $(DESTDIR) Makefile variable when installing Python extensions. Fix from Vladimir Lettiev. (This used to be commit 7ca75d9060f7ae5a1fe0517ec6889f6bc940c6b2) --- source3/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index b36b793b97..b40161c25e 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1470,7 +1470,7 @@ python_install: $(PYTHON_PICOBJS) PYTHON_OBJS="$(PYTHON_PICOBJS)" \ PYTHON_CFLAGS="$(CFLAGS) $(CPPFLAGS)" \ LIBS="$(LDFLAGS) $(LIBS)" \ - $(PYTHON) python/setup.py install + $(PYTHON) python/setup.py install --root=$(DESTDIR) python_clean: @-if test -n "$(PYTHON)"; then $(PYTHON) python/setup.py clean; fi -- cgit