summaryrefslogtreecommitdiffstats
path: root/sys/boot
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2016-10-25 14:58:49 +0000
committerbapt <bapt@FreeBSD.org>2016-10-25 14:58:49 +0000
commita275de7b3ee5c183900db6cf157683d480d89025 (patch)
treefe23d4f23a678ff20277ce663b7b5c5d040099f6 /sys/boot
parentc4b2fbe745072868d11335cf07591abb0426b5b7 (diff)
downloadFreeBSD-src-a275de7b3ee5c183900db6cf157683d480d89025.zip
FreeBSD-src-a275de7b3ee5c183900db6cf157683d480d89025.tar.gz
MFC r307787:
Fix typo in the COMPILER_VERSION check PR: 213120 Submitted by: Yuta Satoh <nigoro.dev@gmail.com>
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/efi/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/efi/Makefile b/sys/boot/efi/Makefile
index 21da86f..66481f8 100644
--- a/sys/boot/efi/Makefile
+++ b/sys/boot/efi/Makefile
@@ -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>
OpenPOWER on IntegriCloud