diff options
author | glowiak <52356948+glowiak@users.noreply.github.com> | 2022-02-07 10:11:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 10:11:36 +0100 |
commit | b2b4ab3f0ce0efdd2ee5524c3e0e754a815f4a48 (patch) | |
tree | b900239310fd5471829d75cba0ee060fc95ef686 /BUILD.md | |
parent | b646fc5a13d1c564fe2317811ae23d23b9cd6ff9 (diff) | |
download | PrismLauncher-b2b4ab3f0ce0efdd2ee5524c3e0e754a815f4a48.tar.gz PrismLauncher-b2b4ab3f0ce0efdd2ee5524c3e0e754a815f4a48.tar.bz2 PrismLauncher-b2b4ab3f0ce0efdd2ee5524c3e0e754a815f4a48.zip |
Update BUILD.md
Diffstat (limited to 'BUILD.md')
-rw-r--r-- | BUILD.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ This is the preferred method for installation, and is suitable for packages. # configure everything cmake -S . -B build \ -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX="/usr" \ # Replace /usr with /usr/local when building on FreeBSD + -DCMAKE_INSTALL_PREFIX="/usr" \ # Use "/usr" when building Linux packages. If building on FreeBSD or not for package, use "/usr/local" -DLauncher_LAYOUT=lin-system cd build make -j$(nproc) install # Optionally specify DESTDIR for packages (i.e. DESTDIR=${pkgdir}) |