From c28290ad7f7bed36f5fced80855f910cd0152092 Mon Sep 17 00:00:00 2001 From: minus Date: Fri, 6 Nov 2015 21:33:24 +0100 Subject: [PATCH] fixed build on FreeBSD and possibly others by using the Linux settings by default. --- bam.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bam.lua b/bam.lua index f4a970383..434cb6108 100644 --- a/bam.lua +++ b/bam.lua @@ -409,10 +409,10 @@ function GenerateSettings(conf, arch, builddir, compiler) elseif family == "unix" then if platform == "macosx" then GenerateMacOSXSettings(settings, conf, arch) - elseif platform == "linux" then - GenerateLinuxSettings(settings, conf, arch) elseif platform == "solaris" then GenerateSolarisSettings(settings, conf, arch) + else -- Linux, BSD + GenerateLinuxSettings(settings, conf, arch) end end