[Box Backup-commit] COMMIT r1799 - box/chris/general/infrastructure

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Sat Sep 1 14:12:55 BST 2007


Author: chris
Date: 2007-09-01 14:12:55 +0100 (Sat, 01 Sep 2007)
New Revision: 1799

Modified:
   box/chris/general/infrastructure/BoxPlatform.pm.in
Log:
Fix $bsd_make to not be defined on GNU/kFreeBSD, which uses GNU Make.
(merges [1796])


Modified: box/chris/general/infrastructure/BoxPlatform.pm.in
===================================================================
--- box/chris/general/infrastructure/BoxPlatform.pm.in	2007-09-01 13:12:14 UTC (rev 1798)
+++ box/chris/general/infrastructure/BoxPlatform.pm.in	2007-09-01 13:12:55 UTC (rev 1799)
@@ -27,8 +27,10 @@
 	$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@';
 	$platform_compile_line_extra =~ s/ -O2//;




More information about the Boxbackup-commit mailing list