From 15d6475dca8783c3d07cd8e50b94eade09624f79 Mon Sep 17 00:00:00 2001
From: Dilawar Singh <dilawars@ncbs.res.in>
Date: Fri, 18 Nov 2016 14:08:00 +0530
Subject: [PATCH] Fixed another typo in FindGSL. Library list was converted to
 string.

---
 moose-core/cmake_modules/FindGSL.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/moose-core/cmake_modules/FindGSL.cmake b/moose-core/cmake_modules/FindGSL.cmake
index 959d20a0..93c2686f 100644
--- a/moose-core/cmake_modules/FindGSL.cmake
+++ b/moose-core/cmake_modules/FindGSL.cmake
@@ -77,7 +77,7 @@ ELSE(WIN32)
             /opt/lib /opt/lib64
         )
     IF (GSL_LIB AND GSLCBLAS_LIB)
-        SET (GSL_LIBRARIES "${GSL_LIB} ${GSLCBLAS_LIB}")
+        SET (GSL_LIBRARIES ${GSL_LIB} ${GSLCBLAS_LIB})
     ENDIF (GSL_LIB AND GSLCBLAS_LIB)
 
     FIND_PATH(GSL_INCLUDE_DIRS NAMES gsl/gsl_blas.h
-- 
GitLab