summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-02-16 19:40:55 +0800
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2019-02-16 19:40:55 +0800
commitc37be301e883e6fda168e30093acfd0afcf63666 (patch)
treedd017eeb157855ac50521954d65bc65e932ffbc4
parent9da32ab7dfbc17ecc9de6d19f64ae2bca9978871 (diff)
downloadcppunit-c37be301e883e6fda168e30093acfd0afcf63666.tar.gz
use [] in AC macros
-rw-r--r--doc/Money.dox2
-rw-r--r--examples/money/configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/Money.dox b/doc/Money.dox
index 2cbb88b..de58fed 100644
--- a/doc/Money.dox
+++ b/doc/Money.dox
@@ -67,7 +67,7 @@ hold the code we're going to build. Create \c configure.in and
<tt>configure.in</tt>
\verbatim
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(money,0.1)
+AC_INIT([money],[0.1])
AC_CONFIG_SRCDIR(Makefile.am)
AM_INIT_AUTOMAKE
PKG_CHECK_MODULES([CPPUNIT], [cppunit >= 1.11.6])
diff --git a/examples/money/configure.ac b/examples/money/configure.ac
index 954d567..fe210e3 100644
--- a/examples/money/configure.ac
+++ b/examples/money/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
dnl Don't forget to run `aclocal -I /usr/local/share/aclocal` before
dnl running autoconf! This is required for PKG_CHECK_MODULES to work.
-AC_INIT(cppunit-cookbook,1.6.2)
+AC_INIT([cppunit-cookbook],[1.6.2])
AC_CONFIG_SRCDIR(Makefile.am)
AM_INIT_AUTOMAKE
PKG_CHECK_MODULES([CPPUNIT], [cppunit >= 1.11.6])