From 085c3f5ae4dc7e6e76ec892e9a32dcc548d30a4b Mon Sep 17 00:00:00 2001 From: Stanowczo Date: Fri, 30 Aug 2019 11:48:16 +0000 Subject: [PATCH] Corrected current directories in install examples (running.md) --- chapters/intro/running.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chapters/intro/running.md b/chapters/intro/running.md index 7e4221a..2e2b7c3 100644 --- a/chapters/intro/running.md +++ b/chapters/intro/running.md @@ -25,9 +25,9 @@ Any *one* of these commands will install: {% term %} # From the build directory (pick one) -~/package $ make install -~/package $ cmake --build . --target install -~/package $ cmake --install . # CMake 3.15+ only +~/package/build $ make install +~/package/build $ cmake --build . --target install +~/package/build $ cmake --install . # CMake 3.15+ only # From the source directory (pick one) ~/package $ cmake --build build --target install