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 e355d42a34729178e93278335f0caaec11b21dd0
parent 2453e12ffefaeee82917dddfb766995933596b6b
Author: St John Karp <contact@stjo.hn>
Date:   Sun, 24 Jul 2022 23:50:57 -0400

midnight-commander: Fix installation/run directories

Midnight Commander was using /usr/etc as the system conf dir and
/usr/var as the local state dir by default. I've manually set
them to /etc and /var in the build script.

Diffstat:
Mextra/midnight-commander/build | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/extra/midnight-commander/build b/extra/midnight-commander/build @@ -1,6 +1,8 @@ #!/usr/bin/env sh ./configure $KISS_CONFIGURE \ - --prefix=/usr + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var make make install