Fix the default GNU Make executable name on FreeBSD (#2553)
This commit is contained in:
parent
fa20614277
commit
016611021d
|
|
@ -603,7 +603,11 @@ string V3Options::getenvBuiltins(const string& var) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __FreeBSD__
|
||||||
|
string V3Options::getenvMAKE() { return V3Os::getenvStr("MAKE", "gmake"); }
|
||||||
|
#else
|
||||||
string V3Options::getenvMAKE() { return V3Os::getenvStr("MAKE", "make"); }
|
string V3Options::getenvMAKE() { return V3Os::getenvStr("MAKE", "make"); }
|
||||||
|
#endif
|
||||||
|
|
||||||
string V3Options::getenvPERL() { //
|
string V3Options::getenvPERL() { //
|
||||||
return V3Os::getenvStr("PERL", "perl");
|
return V3Os::getenvStr("PERL", "perl");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue