sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 42ebd643f6628ed4b0ef21f77d98368a2b0deab6
parent 8ceddc568dcfae458ed9cb2c5b9421cf4b612db1
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Sat, 13 Dec 2025 16:03:34 +0100

bc: Fix path of the bc library

Diffstat:
Mbc.y | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bc.y b/bc.y @@ -881,7 +881,7 @@ main(int argc, char *argv[]) if (!cflag) spawn(); if (lflag) - bc(PREFIX "/bc.library"); + bc(PREFIX "share/misc/bc.library"); while (*argv) bc(*argv++);