Synched gist at Thu Mar 7 21:20:15 PST 2024

This commit is contained in:
Marco Cawthorne 2024-03-07 21:20:15 -08:00
parent 51560380af
commit d6b0dc1f34
Signed by: eukara
GPG key ID: CE2032F0A2882A22

View file

@ -109,11 +109,11 @@ then
# some distros do not have `gcc`, they may only have `gcc10`
# or something else I cannot predict (some don't even have gcc!)
# if something breaks for you adjust this right here. good luck!
if [ $(command -v cc) ]
if [ -z $(command -v cc) ]
then
$MAKETOOL CC=cc
else
$MAKETOOL
else
$MAKETOOL CC=cc
fi
mv -v rewise "$BINDIR/rewise"