From 5916f2f6735bf739a66fbebffba50bd975c22ecb Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Wed, 29 Apr 2020 10:42:21 +0200 Subject: [PATCH] libphobos: Fix KERNEL_VERSION condition in libphobos testsuite A typo in the macro call meant that the #error always triggered. libphobos/ChangeLog: * testsuite/lib/libphobos.exp (check_effective_target_linux_pre_2639): Fix KERNEL_VERSION condition. --- libphobos/ChangeLog | 5 +++++ libphobos/testsuite/lib/libphobos.exp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index a4e209d8615..f8a82182427 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,8 @@ +2020-04-29 Iain Buclaw + + * testsuite/lib/libphobos.exp (check_effective_target_linux_pre_2639): + Fix KERNEL_VERSION condition. + 2020-04-28 Iain Buclaw PR d/94825 diff --git a/libphobos/testsuite/lib/libphobos.exp b/libphobos/testsuite/lib/libphobos.exp index 7e6e53e9d5c..2e9da95ac1c 100644 --- a/libphobos/testsuite/lib/libphobos.exp +++ b/libphobos/testsuite/lib/libphobos.exp @@ -285,7 +285,7 @@ proc check_effective_target_linux_pre_2639 { } { if { [check_no_compiler_messages linux_pre_2639 assembly { #include - #if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE < KERNEL_VERSION(2.6.39) + #if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) #error Yes, it is. #endif }] } {