kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit fe1eb109d1e47b9a2104c5c82675db3e43605382
parent d7fc22da7951522f6a894bea2ef92cb2449f39d1
Author: St John Karp <contact@stjo.hn>
Date:   Thu, 16 Jun 2022 12:41:53 -0400

swi-prolog: Fix prefix passed to cmake

Set this to the KISS standard prefix /usr. Having it at /usr/local
actually causes the package to fail to install because the extant
symlink /usr/local/share/man prevents a mkdir command working correctly.

Diffstat:
Mextra/swi-prolog/build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extra/swi-prolog/build b/extra/swi-prolog/build @@ -2,6 +2,6 @@ mkdir build cd build -cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. +cmake -DCMAKE_INSTALL_PREFIX=/usr .. make make install