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
|
export LC_ALL=C
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Fixup for Solaris and BSDs
|
||||||
# Fixup for Solaris and BSDs
|
# Fixup for Solaris and BSDs
|
||||||
if [[ ! -z $(command -v gmake) ]]; then
|
if [[ ! -z $(command -v gmake) ]]; then
|
||||||
MAKE=gmake
|
MAKE=gmake
|
||||||
|
else
|
||||||
|
MAKE=make
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Fixup for missing libtool
|
# Fixup for missing libtool
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,8 @@ fi
|
||||||
# Fixup for Solaris and BSDs
|
# Fixup for Solaris and BSDs
|
||||||
if [[ ! -z $(command -v gmake) ]]; then
|
if [[ ! -z $(command -v gmake) ]]; then
|
||||||
MAKE=gmake
|
MAKE=gmake
|
||||||
|
else
|
||||||
|
MAKE=make
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Feth the three required files
|
# Feth the three required files
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue