Synched gist at Thu Mar 7 21:20:15 PST 2024
This commit is contained in:
parent
51560380af
commit
d6b0dc1f34
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue