diff options
author | Tim Potter <tpot@samba.org> | 2006-02-06 06:16:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:26 -0500 |
commit | 32f0fa59c0136f526053e5fbc3062b8e1b83c77e (patch) | |
tree | b820f82c60d91eba025e9cd6d394c4ee8512391d | |
parent | aa2e8f6b2ce4b9586a6aea1305bc03166cb9b565 (diff) | |
download | samba-32f0fa59c0136f526053e5fbc3062b8e1b83c77e.tar.gz samba-32f0fa59c0136f526053e5fbc3062b8e1b83c77e.tar.bz2 samba-32f0fa59c0136f526053e5fbc3062b8e1b83c77e.zip |
r13363: Honour the $(DESTDIR) Makefile variable when installing Python
extensions. Fix from Vladimir Lettiev.
(This used to be commit 7ca75d9060f7ae5a1fe0517ec6889f6bc940c6b2)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |