1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 08:41:47 -07:00

Need gmake on freebsd ("make" is bsd make).

Copied from Perforce
 Change: 192297
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2016-09-12 12:53:25 +01:00
parent eba3fdff52
commit 42dbb3bd5a

View file

@ -29,7 +29,7 @@ sub platform_settings {
&settings_macosx();
} elsif ($PLATFORM =~ "^fr") {
&settings_unix();
&settings_linux();
&settings_freebsd();
} else {
die "Sorry: I don't know how to use $PLATFORM.\n";
}
@ -140,6 +140,12 @@ sub settings_linux {
}
sub settings_freebsd {
$make_command = "gmake -B -f $PLATFORM.gmk VARIETY=$VARIETY $link_obj";
$cc_link .= " -lpthread";
}
sub settings_macosx {
local $config = "Debug";
if ($VARIETY eq "hot") {