configure.ac: fix automake 1.14 "option 'subdir-objects' is disabled" warning
[email protected] (Michael Ira Krufky) Tue, 10 Feb 2015 11:14:18 +0100 (CET)
| Newsgroups | gmane.comp.video.videolan.libdvbpsi.devel |
|---|---|
| Message-ID | <[email protected]> |
libdvbpsi | branch: master | Michael Ira Krufky <[email protected]> | Sat Jan 24 21:17:32 2015 -0500| [b01ab1ee55eb48fea5236cbf1821432c2e2993f9] | committer: Jean-Paul Saman configure.ac: fix automake 1.14 "option 'subdir-objects' is disabled" warning Fix the following warning when using automake-1.14: automake-1.14: warning: possible forward-incompatibility. automake-1.14: At least a source file is in a subdirectory, but the 'subdir-objects' automake-1.14: automake option hasn't been enabled. For now, the corresponding output automake-1.14: object file(s) will be placed in the top-level directory. However, automake-1.14: this behaviour will change in future Automake versions: they will automake-1.14: unconditionally cause object files to be placed in the same subdirectory automake-1.14: of the corresponding sources. automake-1.14: You are advised to start using 'subdir-objects' option throughout your automake-1.14: project, to avoid future incompatibilities. src/Makefile.am:130: warning: source file 'tables/???.c' is in a subdirectory, src/Makefile.am:130: but option 'subdir-objects' is disabled src/Makefile.am:130: warning: source file 'tables/atsc_???.c' is in a subdirectory, src/Makefile.am:130: but option 'subdir-objects' is disabled src/Makefile.am:77: warning: source file 'descriptors/dr_??.c' is in a subdirectory, src/Makefile.am:77: but option 'subdir-objects' is disabled Signed-off-by: Michael Ira Krufky <[email protected]> Signed-off-by: Jean-Paul Saman <[email protected]> > http://git.videolan.org/gitweb.cgi/libdvbpsi.git/?a=commit;h=b01ab1ee55eb48fea5236cbf1821432c2e2993f9 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7973bf6..9778c2a 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ(2.50) AC_CONFIG_AUX_DIR(.auto) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_HEADERS(config.h) AC_CONFIG_MACRO_DIR([m4]) _______________________________________________ libdvbpsi-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libdvbpsi-devel