From dd540d1b5d867336f0c0d864e1b3445c8d5dc732 Mon Sep 17 00:00:00 2001 From: Shiro Kawai Date: Sun, 24 Mar 2024 10:38:34 -1000 Subject: [PATCH] Adoc formatting fix --- examples/mqueue-cpp/README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/mqueue-cpp/README.adoc b/examples/mqueue-cpp/README.adoc index 9a4a3ad1c..c933e4af5 100644 --- a/examples/mqueue-cpp/README.adoc +++ b/examples/mqueue-cpp/README.adoc @@ -53,14 +53,14 @@ compiler name `configure.in` finds. CXX = @CXX@ ---- -3. Also in link:Makefile.in[], when builing `mqueue_cpp.so`, give `--{cpp}=$(CXX)` +3. Also in link:Makefile.in[], when builing `mqueue_cpp.so`, give `--c++=$(CXX)` option to the `gauche-package` script to have it use the {cpp} compiler instead of the default C compiler. + [source,Makefile] ---- mqueue_cpp.$(SOEXT): $(mqueue_SRCS) $(mqueue_HDRS) - $(GAUCHE_PACKAGE) compile --{cpp}=$(CXX) --verbose mqueue_cpp $(mqueue_SRCS) + $(GAUCHE_PACKAGE) compile --c++=$(CXX) --verbose mqueue_cpp $(mqueue_SRCS) ----