Fix the default GNU Make executable name on FreeBSD (#2553)

This commit is contained in:
Yuri Victorovich 2020-12-02 19:26:42 -05:00 committed by Wilson Snyder
parent fa20614277
commit 016611021d

View File

@ -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"); }
#endif
string V3Options::getenvPERL() { //
return V3Os::getenvStr("PERL", "perl");