]> git.proxmox.com Git - mirror_spl.git/commit
Fix warning about AM_INIT_AUTOMAKE arguments
authorHajo Möller <dasjoe@gmail.com>
Thu, 12 Mar 2015 22:41:24 +0000 (23:41 +0100)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 25 Mar 2015 18:16:08 +0000 (11:16 -0700)
commita4f54cf036d9a966ff87abe9a0063f2b457c2389
treeb3efad96dc4ae20faa7c2f97e4c5d3d343edb40a
parentabb642b9a971e6c1a15816f9332da89eaebac9c1
Fix warning about AM_INIT_AUTOMAKE arguments

As of automake 1.14.2, currently shipped with Ubuntu 14.04, automake
warns about AM_INIT_AUTOMAKE having more than one argument:

configure.ac:41: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
configure.ac:41: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation

This commit fixes the warnings by following above link's advice, so
AM_INIT gets called with the package's name and version. As both are
defined in the META file we're parsing it with `grep`, `cut` and `tr`.

NOTE: autoconf < 1.14 not supporting m4_esyscmd_s so m4_esyscmd was
used and modified `tr` to truncate newlines, too.

Signed-off-by: Hajo M<C3><B6>ller <dasjoe@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #438
configure.ac