* snprintfv/configure.ac: Here. Not only that substitution was useless, but it was causing runtime warnings with Automake 1.13, and, since support for $(INCLUDES) is bound to disappear in Automake 1.14 (in favour of $(AM_CPPFLAGS)), it will start causing runtime errors with that new Automake version.
Copyright-paperwork-exempt: yes Signed-off-by: Stefano Lattarini <[email protected]> --- snprintfv/ChangeLog | 9 +++++++++ snprintfv/configure.ac | 1 - 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/snprintfv/ChangeLog b/snprintfv/ChangeLog index 79716b8..c9bd2ba 100644 --- a/snprintfv/ChangeLog +++ b/snprintfv/ChangeLog @@ -1,3 +1,12 @@ +2013-01-11 Stefano Lattarini <[email protected]> (tiny change) + + build: drop useless AC_SUBST of 'INCLUDES' + + * configure.ac: Here. Not only that substitution was useless, but + it was causing runtime warnings with Automake 1.13, and, since + support for $(INCLUDES) is bound to disappear in Automake 1.14, it + will start causing runtime errors with that new Automake version. + 2010-09-13 Paolo Bonzini <[email protected]> * configure.ac: Fix cut-and-paste mistake. diff --git a/snprintfv/configure.ac b/snprintfv/configure.ac index dbfd4f3..61eaa5c 100644 --- a/snprintfv/configure.ac +++ b/snprintfv/configure.ac @@ -343,7 +343,6 @@ LTLIBOBJS=`echo "$LIB@&t@OBJS"|sed 's,\.o ,.lo,g;s,\.o$,.lo,'` AC_SUBST(LTLIBOBJS) AC_SUBST(LIBS) -AC_SUBST(INCLUDES) AC_SUBST(ac_aux_dir) AC_CONFIG_FILES(Makefile snprintfv/Makefile) -- 1.8.1.rc3.192.g2d0029e _______________________________________________ help-smalltalk mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-smalltalk
