diff options
| author | Andrés Maldonado <amaldonado@linagora.com> | 2019-02-14 10:10:13 +0100 |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2019-02-16 12:37:31 +0100 |
| commit | 9da32ab7dfbc17ecc9de6d19f64ae2bca9978871 (patch) | |
| tree | c7956e53b38d95ecdf961663858bf846a8bac6db /examples | |
| parent | 51efd6f2184405dea29265ea0dd25c71b348404a (diff) | |
| download | cppunit-9da32ab7dfbc17ecc9de6d19f64ae2bca9978871.tar.gz | |
Modernize AM_INIT_AUTOMAKE syntax
For more info, see: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Change-Id: If27065b6d9c9245717ca24e0c0e1fa4c29bc3e5c
Reviewed-on: https://gerrit.libreoffice.org/67808
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/money/configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/money/configure.ac b/examples/money/configure.ac index a6586e7..954d567 100644 --- a/examples/money/configure.ac +++ b/examples/money/configure.ac @@ -1,8 +1,9 @@ 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(Makefile.am) -AM_INIT_AUTOMAKE(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]) AC_PROG_CXX AC_PROG_CC |
