From c121896068cbdd0d2f4f161170f14e3c22b0221f Mon Sep 17 00:00:00 2001 From: Axel Heider Date: Wed, 16 Jun 2021 18:44:00 +0200 Subject: [PATCH] CMake: don't enforce std channels According to the CMake documentation, this is intended for file redirection. Since we don't redirect to files, but basically enforce std channels, this conflicts with any existing redirection set up when CMake is invoked. As a result the messages are lost. Signed-off-by: Axel Heider --- config.cmake | 3 --- 1 file changed, 3 deletions(-) diff --git a/config.cmake b/config.cmake index c99b179c2..34265c4e1 100644 --- a/config.cmake +++ b/config.cmake @@ -168,9 +168,6 @@ if(DEFINED KernelDTSList AND (NOT "${KernelDTSList}" STREQUAL "")) "${device_dest}" --hardware-config "${config_file}" --hardware-schema "${config_schema}" --yaml --yaml-out "${platform_yaml}" --arch "${KernelArch}" --addrspace-max "${KernelPaddrUserTop}" - INPUT_FILE /dev/stdin - OUTPUT_FILE /dev/stdout - ERROR_FILE /dev/stderr RESULT_VARIABLE error ) if(error)