From e6c10428ce32753b1727aa2afd10884d451d41d1 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 14 Mar 2015 00:23:18 -0700 Subject: [PATCH] All: Properly match ARM processor name in CMakeLists --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1a75f6ff..716e4b09e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,7 +138,7 @@ if(BUILD_BBB OR BUILD_RASPI) endif() endif() -if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm") +if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm.*") enable_language(ASM) endif()