diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2014-04-11 16:49:03 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2014-04-14 16:17:49 (GMT) |
commit | f21ac16edd0d2fbe78daf17bf5f964e4cfbd694b (patch) | |
tree | 421af0acc69aaf7b0fd17b751867e70095c7719c /Tests/ComplexOneConfig/CMakeLists.txt | |
parent | 7eacbaed4db3c3fe5d6c0e3a31e239530a7468f1 (diff) | |
download | CMake-f21ac16edd0d2fbe78daf17bf5f964e4cfbd694b.zip CMake-f21ac16edd0d2fbe78daf17bf5f964e4cfbd694b.tar.gz CMake-f21ac16edd0d2fbe78daf17bf5f964e4cfbd694b.tar.bz2 |
Replace MATCHES test on numbers with EQUAL test
The MATCHES tests were actually wrong, as "a4b" and "42" would also cause a
match when it should not.
Diffstat (limited to 'Tests/ComplexOneConfig/CMakeLists.txt')
-rw-r--r-- | Tests/ComplexOneConfig/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/ComplexOneConfig/CMakeLists.txt b/Tests/ComplexOneConfig/CMakeLists.txt index a908e11..bb00341 100644 --- a/Tests/ComplexOneConfig/CMakeLists.txt +++ b/Tests/ComplexOneConfig/CMakeLists.txt @@ -36,7 +36,7 @@ ASSERT(Complex_BINARY_DIR "The PROJECT command is broken") # macro(TEST_ARGC value1 value2) add_definitions(${value1} ${value2}) - if (${ARGC} MATCHES 4) + if (${ARGC} EQUAL 4) add_definitions(${ARGV2} ${ARGV3}) endif () endmacro() |