From e2d6ce553db3b23f59b66c991e8db3df04aebaae Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Mon, 7 Jun 2021 17:59:12 +1000 Subject: [PATCH] cmake: partition_table: Fix generation of MD5 for partition table when using CMake --- components/partition_table/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/partition_table/CMakeLists.txt b/components/partition_table/CMakeLists.txt index 11fef65f0b..22e9c1f9d9 100644 --- a/components/partition_table/CMakeLists.txt +++ b/components/partition_table/CMakeLists.txt @@ -14,7 +14,7 @@ else() set(final_partition_target "build_partition_table") endif() -if(CONFIG_PARTITION_TABLE_MD5) +if(NOT CONFIG_PARTITION_TABLE_MD5) set(md5_opt --disable-md5sum) endif()