# HG changeset patch # User Mike Becker # Date 1687881236 -7200 # Node ID b79340dee0b4e33b557f473d7d647014c7d93d49 # Parent f73adc75e50a0de08f594d888166cba895da4a6b update install instructions for ucx 3.0 diff -r f73adc75e50a -r b79340dee0b4 docs/src/install.md --- a/docs/src/install.md Tue Jun 20 19:46:01 2023 +0200 +++ b/docs/src/install.md Tue Jun 27 17:53:56 2023 +0200 @@ -9,12 +9,14 @@ tar -xzf ucx-latest.tar.gz cd ucx-latest -Then create a build directory and issue the cmake command and then make. +Then create a build directory and use cmake to create the build files, +execute the build, and - optionally - install the files. mkdir build cd build cmake .. - make + cmake --build . + sudo cmake --install . ---