summaryrefslogtreecommitdiff
path: root/infrastructure/BoxPlatform.pm.in
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-08-30 18:48:14 +0000
committerChris Wilson <chris+github@qwirx.com>2007-08-30 18:48:14 +0000
commita1ce6b9d022e30bf0974906fefc9d1d2ffe2e067 (patch)
tree55b4186114641d56cb6d1737a84623c7379dcf78 /infrastructure/BoxPlatform.pm.in
parentb75e036cf14bb6caceb6f76bbda06659619f1f41 (diff)
Fix $bsd_make to not be defined on GNU/kFreeBSD, which uses GNU Make.
Diffstat (limited to 'infrastructure/BoxPlatform.pm.in')
-rw-r--r--infrastructure/BoxPlatform.pm.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/infrastructure/BoxPlatform.pm.in b/infrastructure/BoxPlatform.pm.in
index b034eed1..8c084090 100644
--- a/infrastructure/BoxPlatform.pm.in
+++ b/infrastructure/BoxPlatform.pm.in
@@ -27,7 +27,9 @@ BEGIN
$build_os = 'CYGWIN' if $build_os =~ m/CYGWIN/;
$make_command = ($build_os eq 'Darwin') ? 'bsdmake' : ($build_os eq 'SunOS') ? 'gmake' : 'make';
- $bsd_make = ($build_os ne 'Linux' && $build_os ne 'CYGWIN' && $build_os ne "SunOS");
+
+ $bsd_make = ($build_os ne 'Linux' && $build_os ne 'CYGWIN' &&
+ $build_os ne "SunOS" && $build_os ne 'GNU/kFreeBSD');
# blank extra flags by default
$platform_compile_line_extra = '@CPPFLAGS@ @CXXFLAGS@ @CXXFLAGS_STRICT@';