]> xenbits.xensource.com Git - people/dariof/libvirt.git/commitdiff
maint: use modern autoconf idioms
authorEric Blake <eblake@redhat.com>
Wed, 31 Jul 2013 20:52:16 +0000 (14:52 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 1 Aug 2013 13:31:53 +0000 (07:31 -0600)
Autoconf 2.59 says that AC_OUTPUT with arguments is obsolete,
and we are already using the replacement for some, but not all,
of our output files.

* configure.ac (AC_OUTPUT): Rewrite to use AC_CONFIG_FILES.

Signed-off-by: Eric Blake <eblake@redhat.com>
configure.ac

index 084d8646ac501e62a998fa0ff95d3e925ec4e65b..a155790f45abaf1efb7d4cad0c16b68fe1f63c09 100644 (file)
@@ -2440,26 +2440,28 @@ AC_DEFINE_UNQUOTED([base64_encode_alloc],[libvirt_gl_base64_encode_alloc],[Hack
 
 AC_CONFIG_FILES([run],
                 [chmod +x,-w run])
-AC_OUTPUT(Makefile src/Makefile include/Makefile docs/Makefile \
-         docs/schemas/Makefile \
-         gnulib/lib/Makefile \
-         gnulib/tests/Makefile \
-          libvirt.pc libvirt.spec mingw-libvirt.spec \
-          po/Makefile.in \
-         include/libvirt/Makefile include/libvirt/libvirt.h \
-         python/Makefile \
-          daemon/Makefile \
-          tools/Makefile \
-          tests/Makefile \
-          examples/apparmor/Makefile \
-          examples/domain-events/events-c/Makefile \
-          examples/domsuspend/Makefile \
-          examples/dominfo/Makefile \
-          examples/openauth/Makefile \
-          examples/python/Makefile \
-          examples/hellolibvirt/Makefile \
-          examples/systemtap/Makefile \
-          examples/xml/nwfilter/Makefile)
+AC_CONFIG_FILES([\
+        Makefile src/Makefile include/Makefile docs/Makefile \
+        docs/schemas/Makefile \
+        gnulib/lib/Makefile \
+        gnulib/tests/Makefile \
+        libvirt.pc libvirt.spec mingw-libvirt.spec \
+        po/Makefile.in \
+        include/libvirt/Makefile include/libvirt/libvirt.h \
+        python/Makefile \
+        daemon/Makefile \
+        tools/Makefile \
+        tests/Makefile \
+        examples/apparmor/Makefile \
+        examples/domain-events/events-c/Makefile \
+        examples/domsuspend/Makefile \
+        examples/dominfo/Makefile \
+        examples/openauth/Makefile \
+        examples/python/Makefile \
+        examples/hellolibvirt/Makefile \
+        examples/systemtap/Makefile \
+        examples/xml/nwfilter/Makefile])
+AC_OUTPUT
 
 AC_MSG_NOTICE([])
 AC_MSG_NOTICE([Configuration summary])