summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2012-03-07 20:42:43 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-03-07 20:42:43 +0100
commit810d18c9567cd21f30f3356ef97aedc0e164b562 (patch)
tree63de0e822b1b9615f279724e40e7dc43baace5ff
parent3123a1107c3d78d4fb610a4753e7d7f7c4cb69d2 (diff)
build: fix autogen message
When running ./autogen.sh on a pristine git checkout, I got: libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. You should add the contents of '/usr/share/aclocal/intltool.m4' to 'aclocal.m4'.
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 83f606f..82e0627 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,7 @@
AC_INIT(virt-viewer, 0.5.2)
AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
+AC_CONFIG_MACRO_DIR([m4])
AM_CONFIG_HEADER(config.h)
dnl Make automake keep quiet about wildcards & other GNUmake-isms
AM_INIT_AUTOMAKE([-Wno-portability])