From 81283846a39796c089ce37cc955176f4beaceb1f Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Tue, 25 May 2021 19:32:14 +0000 Subject: [PATCH] Fix #1366, Resolve mismatched endforeach of CMakeList.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1765e5dec..c0bb23d19 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,5 +122,5 @@ prepare() # Call the process_arch macro for each architecture foreach(SYSVAR ${TGTSYS_LIST}) process_arch(${SYSVAR}) -endforeach(SYSVAR IN LISTS TGTSYS_LIST) +endforeach(SYSVAR ${TGTSYS_LIST})