Submitted By: Miklos Vajna Description: Add DESTDIR support to Makefile to make distro's life easier. diff -Naur bzr-svn-0.4.10.orig/Makefile bzr-svn-0.4.10/Makefile --- bzr-svn-0.4.10.orig/Makefile 2008-05-12 01:33:21.000000000 +0200 +++ bzr-svn-0.4.10/Makefile 2008-08-02 23:50:58.000000000 +0200 @@ -7,6 +7,7 @@ PYLINT ?= pylint RST2HTML ?= rst2html TESTS ?= svn +DESTDIR ?= all:: build README.html FAQ.html AUTHORS.html @@ -17,7 +18,7 @@ $(SETUP) build_ext --inplace install:: - $(SETUP) install + $(SETUP) install --root $(DESTDIR) clean:: $(SETUP) clean