From: Daniel P. Berrangé
Date: Fri, 17 Jul 2020 09:50:22 +0000 (+0100)
Subject: docs: fix compilation instructions to use separate build dir
X-Git-Tag: v6.6.0-rc1~70
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4da0b2ac65a9625134e7c953c38dbe1a6ca4053;p=thirdparty%2Flibvirt.git
docs: fix compilation instructions to use separate build dir
Reviewed-by: Andrea Bolognani
Reviewed-by: Pavel Hrdina
Signed-off-by: Daniel P. Berrangé
---
diff --git a/docs/compiling.html.in b/docs/compiling.html.in
index 0e12a9218e..18943a9a79 100644
--- a/docs/compiling.html.in
+++ b/docs/compiling.html.in
@@ -76,7 +76,8 @@ $ sudo make install
-$ ./autogen.sh --prefix=$HOME/usr
+$ mkdir build && cd build
+$ ../autogen.sh --prefix=$HOME/usr
$ make
$ sudo make install
@@ -88,7 +89,8 @@ $ sudo make install
-$ ./autogen.sh --system
+$ mkdir build && cd build
+$ ../autogen.sh --system
$ make