Author: bapt
Date: Tue Oct 25 14:58:49 2016
New Revision: 307916
URL: https://svnweb.freebsd.org/changeset/base/307916

Log:
  MFC r307787:
  
  Fix typo in the COMPILER_VERSION check
  
  PR:           213120
  Submitted by: Yuta Satoh <nigoro....@gmail.com>

Modified:
  stable/11/sys/boot/efi/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/boot/efi/Makefile
==============================================================================
--- stable/11/sys/boot/efi/Makefile     Tue Oct 25 14:56:42 2016        
(r307915)
+++ stable/11/sys/boot/efi/Makefile     Tue Oct 25 14:58:49 2016        
(r307916)
@@ -4,7 +4,7 @@
 
 # In-tree GCC does not support __attribute__((ms_abi)), but gcc newer
 # than 4.5 supports it.
-.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 404500
+.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
 
 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
 .if ${MK_FDT} != "no"
@@ -18,6 +18,6 @@ SUBDIR+=      fdt
 SUBDIR+=       libefi loader boot1
 .endif
 
-.endif # ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 404500
+.endif # ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
 
 .include <bsd.subdir.mk>
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to