aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-02-11 11:06:04 -0800
committerGerald Combs <gerald@wireshark.org>2018-02-11 19:06:39 +0000
commit86376e8447aef9ee182dc34b98d61bb37f3bb841 (patch)
tree35241a8121f154a43dc5e8e7be76b2bf254e1313 /cmake
parent94a0f7c6414cb83535e89557ce3cce47a1808fec (diff)
Fix ASCIIDOCTORJ_OPTS.
Avoid excessive quoting. Change-Id: I0dd7593d464851bd34cfc7a5a99a21a2a826dd7a Reviewed-on: https://code.wireshark.org/review/25732 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindAsciidoctor.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindAsciidoctor.cmake b/cmake/modules/FindAsciidoctor.cmake
index f387432030..f2a6e8ccdb 100644
--- a/cmake/modules/FindAsciidoctor.cmake
+++ b/cmake/modules/FindAsciidoctor.cmake
@@ -21,7 +21,7 @@ FIND_PROGRAM(ASCIIDOCTOR_EXECUTABLE
if(ASCIIDOCTOR_EXECUTABLE)
# The AsciidctorJ wrapper script sets -Xmx256m. This isn't enough
# for the User's Guide.
- set(_asciidoctorj_opts "-Xmx800m $ENV{ASCIIDOCTORJ_OPTS}")
+ set(_asciidoctorj_opts -Xmx800m $ENV{ASCIIDOCTORJ_OPTS})
execute_process( COMMAND ${ASCIIDOCTOR_EXECUTABLE} --version OUTPUT_VARIABLE _ad_full_version )
separate_arguments(_ad_full_version)
list(GET _ad_full_version 1 ASCIIDOCTOR_VERSION)