Cmake docbook tests: typos

This commit is contained in:
Kornel Benko 2020-08-01 21:08:35 +02:00
parent d3b7657e3c
commit a913b5aa24
2 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ else()
set(executable_ ${PERL_EXECUTABLE} "${TOP_SRC_DIR}/development/autotests/filterXml4Sax.pl")
endif()
if (XMLLINT_EXECUTABLE)
message(STATUS "Calling: ${XMLLINT_EXECUTABLE} " ${xmllint_params})
message(STATUS "Calling: " ${executable_} ${xmllint_params} " ${result_file_name}")
# check the created xhtml file
execute_process(
COMMAND ${executable_} ${xmllint_params} "${result_file_name}"

View File

@ -78,7 +78,7 @@ sub handlePara($)
$rest = $3;
}
elsif ($rest =~ /^([^\s]+)(.*)$/) {
my $val1 = $1
my $val1 = $1;
$rest = $2;
$val1 =~ s/([\"\'\\])/\\$1/g;
$val = '"' . $val1 . '"';