Skip to content

Commit

Permalink
Merge pull request #2525 from Codym48:cmartin/status-stdout
Browse files Browse the repository at this point in the history
Fix #2561, send CMake message to stdout instead of stderr
  • Loading branch information
dzbaker committed May 21, 2024
2 parents 19a01d2 + 4e46fe0 commit 2032843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/arch_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ function(process_arch SYSVAR)
if (FILESRC)
# In case the file is a symlink, follow it to get to the actual file
get_filename_component(FILESRC "${FILESRC}" REALPATH)
message("NOTE: Selected ${FILESRC} as source for ${INSTFILE} on ${TGTNAME}")
message(STATUS "NOTE: Selected ${FILESRC} as source for ${INSTFILE} on ${TGTNAME}")
install(FILES ${FILESRC} DESTINATION ${TGTNAME}/${INSTALL_SUBDIR} RENAME ${INSTFILE})
else(FILESRC)
message("WARNING: Install file ${INSTFILE} for ${TGTNAME} not found")
Expand Down

0 comments on commit 2032843

Please sign in to comment.