aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-08-23 17:18:40 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-08-23 17:18:40 +0200
commit13239eb068fc122af9338e60c144f9697c0bb2bc (patch)
tree4ba1c353d03aa2dff7a8a9a9fa1fdfac8934de4c
parent367dde614dafebf976d24bcc6c0f18d8ed7348c7 (diff)
Fix: wrong variable detection
Change-Id: Idc736c60f51e20640476202996121eefef8b8210 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--cmake/common.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake
index 5e107ac..d0ec12e 100644
--- a/cmake/common.cmake
+++ b/cmake/common.cmake
@@ -38,7 +38,7 @@ endforeach()
file(GLOB project_cmakefiles ${ENTRY_POINT}/cmake/[0-9][0-9]-${OSRELEASE}*.cmake )
list(SORT project_cmakefiles)
-if(NOT ${project_cmakefiles})
+if(NOT project_cmakefiles)
file(GLOB project_cmakefiles ${ENTRY_POINT}/cmake/[0-9][0-9]-default*.cmake)
endif()