From a4da0b2ac65a9625134e7c953c38dbe1a6ca4053 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?=
Date: Fri, 17 Jul 2020 10:50:22 +0100
Subject: [PATCH] docs: fix compilation instructions to use separate build dir
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Reviewed-by: Andrea Bolognani
Reviewed-by: Pavel Hrdina
Signed-off-by: Daniel P. Berrangé
---
docs/compiling.html.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
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