summaryrefslogtreecommitdiff
path: root/pcre
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mnogosearch.org>2013-10-03 10:58:41 +0400
committerAlexander Barkov <bar@mnogosearch.org>2013-10-03 10:58:41 +0400
commitf37e0a885ab257b40159a81cdc2b3a7d70e7b691 (patch)
treec9e4af36a297065c14de2d66e040e1a7bce47fe6 /pcre
parent1a3bb9487d9f23e895c506fd36cab1a5e39ac69b (diff)
downloadmariadb-git-f37e0a885ab257b40159a81cdc2b3a7d70e7b691.tar.gz
MDEV-4425 Regexp enhancements
PCRE unit tests failed on Ubuntu Precise, because "source" is not a known command in "dash" (the default shell in Precise). Changing "source" to ".", which should be understood in all shells.
Diffstat (limited to 'pcre')
-rw-r--r--pcre/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcre/CMakeLists.txt b/pcre/CMakeLists.txt
index a1238889c8c..55caabcfd7a 100644
--- a/pcre/CMakeLists.txt
+++ b/pcre/CMakeLists.txt
@@ -374,7 +374,7 @@ MESSAGE(\" \")
srcdir=${PROJECT_SOURCE_DIR}
pcretest=${PCRETEST_EXE}
cd ${PCRETEST_DIR}
-source ${PROJECT_SOURCE_DIR}/RunTest
+. ${PROJECT_SOURCE_DIR}/RunTest
if test \"$?\" != \"0\"; then exit 1; fi
# End
")
@@ -391,7 +391,7 @@ srcdir=${PROJECT_SOURCE_DIR}
pcregrep=${PCREGREP_EXE}
pcretest=${PCRETEST_EXE}
cd ${PCRETEST_DIR}
-source ${PROJECT_SOURCE_DIR}/RunGrepTest
+. ${PROJECT_SOURCE_DIR}/RunGrepTest
if test \"$?\" != \"0\"; then exit 1; fi
# End
")