Fix unset MAKE variable in test scripts
parent
1d5eaf5268
commit
fb303f5180
|
|
@ -34,9 +34,12 @@ if [[ "$IS_DARWIN" -ne 0 ]]; then
|
|||
export LC_ALL=C
|
||||
fi
|
||||
|
||||
# Fixup for Solaris and BSDs
|
||||
# Fixup for Solaris and BSDs
|
||||
if [[ ! -z $(command -v gmake) ]]; then
|
||||
MAKE=gmake
|
||||
else
|
||||
MAKE=make
|
||||
fi
|
||||
|
||||
# Fixup for missing libtool
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@ fi
|
|||
# Fixup for Solaris and BSDs
|
||||
if [[ ! -z $(command -v gmake) ]]; then
|
||||
MAKE=gmake
|
||||
else
|
||||
MAKE=make
|
||||
fi
|
||||
|
||||
# Feth the three required files
|
||||
|
|
|
|||
Loading…
Reference in New Issue