From 5e685b2b142597fc141adf7ee4a2451b9f1c4fa0 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Wed, 13 Jun 2012 09:58:37 +0100 Subject: [PATCH] Don't treat @ characters as separators in the LINGUAS cmake option. Fixes issue 2999 --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8599fc67e..68140d409 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -706,7 +706,7 @@ else (LINGUAS STREQUAL "All") if (NOT LINGUAS OR LINGUAS STREQUAL "None") set (LANGUAGES "") else (NOT LINGUAS OR LINGUAS STREQUAL "None") - string(REGEX MATCHALL [a-zA-Z_]+ + string(REGEX MATCHALL [a-zA-Z_@]+ LANGUAGES ${LINGUAS}) endif (NOT LINGUAS OR LINGUAS STREQUAL "None") endif (LINGUAS STREQUAL "All")