Commit f37e0a88 authored by Alexander Barkov's avatar Alexander Barkov

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.
parent 1a3bb948
...@@ -374,7 +374,7 @@ MESSAGE(\" \") ...@@ -374,7 +374,7 @@ MESSAGE(\" \")
srcdir=${PROJECT_SOURCE_DIR} srcdir=${PROJECT_SOURCE_DIR}
pcretest=${PCRETEST_EXE} pcretest=${PCRETEST_EXE}
cd ${PCRETEST_DIR} cd ${PCRETEST_DIR}
source ${PROJECT_SOURCE_DIR}/RunTest . ${PROJECT_SOURCE_DIR}/RunTest
if test \"$?\" != \"0\"; then exit 1; fi if test \"$?\" != \"0\"; then exit 1; fi
# End # End
") ")
...@@ -391,7 +391,7 @@ srcdir=${PROJECT_SOURCE_DIR} ...@@ -391,7 +391,7 @@ srcdir=${PROJECT_SOURCE_DIR}
pcregrep=${PCREGREP_EXE} pcregrep=${PCREGREP_EXE}
pcretest=${PCRETEST_EXE} pcretest=${PCRETEST_EXE}
cd ${PCRETEST_DIR} cd ${PCRETEST_DIR}
source ${PROJECT_SOURCE_DIR}/RunGrepTest . ${PROJECT_SOURCE_DIR}/RunGrepTest
if test \"$?\" != \"0\"; then exit 1; fi if test \"$?\" != \"0\"; then exit 1; fi
# End # End
") ")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment