svn commit: samba r13363 - branches/SAMBA_3_0/source trunk/source

tpot at samba.org tpot at samba.org
Mon Feb 6 06:16:36 GMT 2006


Author: tpot
Date: 2006-02-06 06:16:35 +0000 (Mon, 06 Feb 2006)
New Revision: 13363

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13363

Log:
Honour the $(DESTDIR) Makefile variable when installing Python 
extensions.  Fix from Vladimir Lettiev.

Modified:
   branches/SAMBA_3_0/source/Makefile.in
   trunk/source/Makefile.in


Changeset:
Modified: branches/SAMBA_3_0/source/Makefile.in
===================================================================
--- branches/SAMBA_3_0/source/Makefile.in	2006-02-06 04:06:55 UTC (rev 13362)
+++ branches/SAMBA_3_0/source/Makefile.in	2006-02-06 06:16:35 UTC (rev 13363)
@@ -1470,7 +1470,7 @@
 	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

Modified: trunk/source/Makefile.in
===================================================================
--- trunk/source/Makefile.in	2006-02-06 04:06:55 UTC (rev 13362)
+++ trunk/source/Makefile.in	2006-02-06 06:16:35 UTC (rev 13363)
@@ -1488,7 +1488,7 @@
 	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



More information about the samba-cvs mailing list