From: Rob Browning Date: Sun, 13 Jan 2013 05:38:02 +0000 (-0600) Subject: Explain current installation process in README.md (i.e. "make install"). X-Git-Tag: bup-0.25-rc2~94 X-Git-Url: https://arthur.barton.de/gitweb/?p=bup.git;a=commitdiff_plain;h=48c75f0f3f4c7b64b34c0c60d7e216a94424e65d Explain current installation process in README.md (i.e. "make install"). Signed-off-by: Rob Browning --- diff --git a/README.md b/README.md index 65d410c..30b94be 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,15 @@ From source (The tests should pass. If they don't pass for you, stop here and send me an email.) + - You can install bup via "make install", and override the default + destination with DESTDIR and PREFIX. + + Files are normally installed to "$DESTDIR/$PREFIX" where DESTDIR is + empty by default, and PREFIX is set to /usr. So if you wanted to + install bup to /opt/bup, you might do something like this: + + make install DESTDIR=/opt/bup PREFIX='' + From binary packages --------------------