From: Gary V. Vaughan Date: Thu, 22 Aug 2013 08:51:33 +0000 (+0700) Subject: libltdl: don't trip subdir-objects warning from Automake >= 1.14. X-Git-Tag: v2.4.2.418~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a734603dc187086e3aa0e1482f39138a427fc33b;p=thirdparty%2Flibtool.git libltdl: don't trip subdir-objects warning from Automake >= 1.14. Latest Automake releases now warn when subdir-objects is not specified in preparation for Automake 2.0. The option has been in Automake for more than a decade, so there's minimal risk of someone using the next release of Libtool alongside an ancient release of Automake when bootstrapping libltdl client projects. * libltdl/configure.ac (AM_INIT_AUTOMAKE): Add subdir-objects. Signed-off-by: Gary V. Vaughan --- diff --git a/libltdl/configure.ac b/libltdl/configure.ac index 31baec701..62bd57613 100644 --- a/libltdl/configure.ac +++ b/libltdl/configure.ac @@ -52,7 +52,7 @@ LT_CONFIG_LTDL_DIR([.]) # I am me! ## Automake Initialisation. ## ## ------------------------ ## -AM_INIT_AUTOMAKE([gnu]) +AM_INIT_AUTOMAKE([gnu subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])