From 152bbe5068fc125351f728f04a14113e08f87671 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 14 Sep 2016 10:11:43 -0400 Subject: Modules: Fix typos in name of `CMAKE_COMPILER_IS_GNUCC` variable It is not called `CMAKE_COMPILER_IS_GNUC` (without last `C`). Closes: #16297 --- CompileFlags.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CompileFlags.cmake') diff --git a/CompileFlags.cmake b/CompileFlags.cmake index 3c053fae04..535f68b98c 100644 --- a/CompileFlags.cmake +++ b/CompileFlags.cmake @@ -64,7 +64,7 @@ endif() # Workaround for short jump tables on PA-RISC if(CMAKE_SYSTEM_PROCESSOR MATCHES "^parisc") - if(CMAKE_COMPILER_IS_GNUC) + if(CMAKE_COMPILER_IS_GNUCC) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mlong-calls") endif() if(CMAKE_COMPILER_IS_GNUCXX) -- cgit v1.2.1