Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: seL4/seL4_tools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff1e8c9634ecca0deb61236ab04360e8594d29dd
Choose a base ref
..
head repository: seL4/seL4_tools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2dfa6179d109c8e8b8940d5b6c4bd23c0cf0150f
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 cmake-tool/helpers/cpio.cmake
4 changes: 2 additions & 2 deletions cmake-tool/helpers/cpio.cmake
Original file line number Diff line number Diff line change
@@ -36,12 +36,12 @@ endfunction()
# into another target
function(MakeCPIO output_name input_files)
cmake_parse_arguments(PARSE_ARGV 2 MAKE_CPIO "" "CPIO_SYMBOL" "DEPENDS")
if(MAKE_CPIO_UNPARSED_ARGUMENTS)
if(NOT "${MAKE_CPIO_UNPARSED_ARGUMENTS}" STREQUAL "")
message(FATAL_ERROR "Unknown arguments to MakeCPIO")
endif()

set(archive_symbol "_cpio_archive")
if(MAKE_CPIO_CPIO_SYMBOL)
if(NOT "${MAKE_CPIO_CPIO_SYMBOL}" STREQUAL "")
set(archive_symbol ${MAKE_CPIO_CPIO_SYMBOL})
endif()