From a37e8edd2fc6f5de8762a245292b95623da9d4f4 Mon Sep 17 00:00:00 2001 From: Nav Date: Wed, 18 Jan 2023 00:43:08 +0000 Subject: [PATCH] Tidying --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index facca41d..aed2a7a8 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ See source code in src/SignalHandler/ for more. #### Dependencies -To compile Bloom, the following dependencies must be resolved. +To compile Bloom, the following dependencies must be resolved: - CMake version 3.22 or later: - G++10 or later @@ -105,7 +105,7 @@ cmake --build ./; # Install Bloom to /opt/bloom sudo cmake --install ./; -# OR, install Bloom to [SOME_OTHER_INSTALLATION_DIR]] +# OR, install Bloom to [SOME_OTHER_INSTALLATION_DIR] sudo cmake --install ./ --prefix [SOME_OTHER_INSTALLATION_DIR]; ``` #### Other notes on building from source: @@ -118,4 +118,4 @@ sudo cmake --install ./ --prefix [SOME_OTHER_INSTALLATION_DIR]; 1. Set `LD_LIBRARY_PATH` before running Bloom: `export LD_LIBRARY_PATH=[PATH_TO_QT_INSTALLATION]/gcc_64/lib;` OR: 2. Update Bloom's RUNPATH (with a tool like `patchelf`) - Once you've installed Bloom, you'll need to create a symlink to Bloom's binary, in `/usr/bin/`, to run `bloom` without - having to supply the full path. + having to supply the full path: `sudo ln -s /opt/bloom/bin/bloom /usr/bin/;`