Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 27f3a8c

Browse files
committedNov 20, 2024·
done -> configured
1 parent 8543f0f commit 27f3a8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tools/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ function(pico_init_picotool)
147147
endfunction()
148148

149149
function(picotool_check_configurable TARGET)
150-
get_target_property(done ${TARGET} PICOTOOL_PROCESSING_CONFIGURED)
151-
if (done)
150+
get_target_property(configured ${TARGET} PICOTOOL_PROCESSING_CONFIGURED)
151+
if (configured)
152152
message(FATAL_ERROR "All picotool post-processing functions for \"${TARGET}\" must come before pico_add_extra_outputs(${TARGET})")
153153
endif()
154154
endfunction()

0 commit comments

Comments
 (0)
Please sign in to comment.