autotools: Silence warnings from autoreconf

Previously invoking ./bootstrap.sh would output:

         $ ./bootstrap.sh
         + AUTOCONF_FILES=Makefile.in aclocal.m4 ar-lib autom4te.cache compile
         config.guess config.h.in config.sub configure depcomp install-sh
         ltmain.sh missing *libtoo
         l test-driver
         + autoreconf -i
         libtoolize: putting auxiliary files in '.'.
         libtoolize: copying file './ltmain.sh'
         libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
         libtoolize: and rerunning libtoolize and aclocal.
         libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
         configure.ac:22: installing './compile'
         configure.ac:22: installing './config.guess'
         configure.ac:22: installing './config.sub'
         configure.ac:5: installing './install-sh'
         configure.ac:5: installing './missing'
         Makefile.am: installing './depcomp'
         parallel-tests: installing './test-driver'
         + echo Run "./configure ${CONFIGURE_FLAGS} && make"
         Run "./configure ${CONFIGURE_FLAGS} && make"

Address the three lines:

         libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
         libtoolize: and rerunning libtoolize and aclocal.
         libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.

Change-Id: I0e4b4318ff5cd3775455e7c7514609060375f24d
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
3 files changed
tree: ebf9e0f4900e2642f624662e5b4614eb55a14e2e
  1. m4/
  2. test/
  3. .gitignore
  4. activation.hpp
  5. bootstrap.sh
  6. configure.ac
  7. generate-squashfs
  8. item_updater.cpp
  9. item_updater.hpp
  10. item_updater_main.cpp
  11. LICENSE
  12. Makefile.am
  13. README.md
  14. version_host_software_manager.cpp
  15. version_host_software_manager.hpp
  16. version_host_software_manager_main.cpp
README.md

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To full clean the repository again run `./bootstrap.sh clean`.