Cmake - generate new ppfw when firmware changes (#1782)

This commit is contained in:
Mark Thompson 2024-01-17 00:01:48 -06:00 committed by GitHub
parent 99bbd8805c
commit 39e1a0ffe8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,7 +100,7 @@ add_custom_command(
COMMAND mkdir -p firmware_tar/APPS COMMAND mkdir -p firmware_tar/APPS
COMMAND cp application/*.ppma firmware_tar/APPS COMMAND cp application/*.ppma firmware_tar/APPS
COMMAND cd firmware_tar && tar -cvaf ../${PPFW_FILENAME} * COMMAND cd firmware_tar && tar -cvaf ../${PPFW_FILENAME} *
DEPENDS firmware DEPENDS firmware ${FIRMWARE_FILENAME}
# Dont use VERBATIM here as it prevents usage of globbing (*) # Dont use VERBATIM here as it prevents usage of globbing (*)
# There shouldnt be any funny business in the filenames above :) # There shouldnt be any funny business in the filenames above :)
) )