diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-23 17:18:40 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | db6b08667404370cf9e2668370ab647e0697bde6 (patch) | |
tree | e890d72ed7cc5fd9310e2fa3b2d2fbb79023e622 | |
parent | 0cb7407e26d3c91008aff7ae19e9d8bd38ff8440 (diff) |
Fix: wrong variable detection
Change-Id: Idc736c60f51e20640476202996121eefef8b8210
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | cmake/common.cmake | 2 |
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() |