aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2009-11-20 11:26:26 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2009-11-20 11:26:26 +0000
commitb0baf43114d3e8fa0bff957636912e93ec8a4e6a (patch)
tree712e3a1ac7114dd5939b40ced12ce32b1087f5c6 /Eigen
parent6cbf662f14d8fd0606d9e9c6f7052e5dcc52b2ae (diff)
Eigen/CMakeLists.txt: remove parens from if.
Only CMake 2.6.3 and later recognize this syntax, and at the moment we require 2.6.2. CMake uses the right precendence, per its man page, so the parentheses are not necessary.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/CMakeLists.txt b/Eigen/CMakeLists.txt
index 321b2978e..af90db2fe 100644
--- a/Eigen/CMakeLists.txt
+++ b/Eigen/CMakeLists.txt
@@ -1,6 +1,6 @@
file(GLOB Eigen_directory_files "*")
foreach(f ${Eigen_directory_files})
- if(NOT(f MATCHES ".txt") AND NOT (f MATCHES "src"))
+ if(NOT f MATCHES ".txt" AND NOT f MATCHES "src")
list(APPEND Eigen_directory_files_to_install ${f})
endif()
endforeach(f ${Eigen_directory_files})