The latter is a long-deprecated and obsolescent alias for the former. * packages/glib/Makefile.am (INCLUDES): Rename ... (AM_CPPFLAGS): ... like this
Signed-off-by: Stefano Lattarini <[email protected]> --- ChangeLog | 9 +++++++++ packages/glib/Makefile.am | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ec4a739..293b064 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2012-08-20 Stefano Lattarini <[email protected]> + + build: use $(AM_CPPFLAGS), not $(INCLUDES) + + The latter is a long-deprecated and obsolescent alias for the former. + + * packages/glib/Makefile.am (INCLUDES): Rename ... + (AM_CPPFLAGS): ... like this + 2012-02-22 Paolo Bonzini <[email protected]> * kernel/CallinProcess.st: Fix creation of cloned process, reported diff --git a/packages/glib/Makefile.am b/packages/glib/Makefile.am index 4ff4566..b8075f6 100644 --- a/packages/glib/Makefile.am +++ b/packages/glib/Makefile.am @@ -23,7 +23,10 @@ BUILT_SOURCES = libs.def # installed before libgst-gobject has been relinked. .NOTPARALLEL: -INCLUDES = -I$(top_srcdir)/libgst -I$(top_srcdir)/lib-src -I$(top_srcdir)/libltdl +AM_CPPFLAGS = \ + -I$(top_srcdir)/libgst \ + -I$(top_srcdir)/lib-src \ + -I$(top_srcdir)/libltdl AM_CFLAGS = $(GLIB_CFLAGS) $(GTHREAD_CFLAGS) -- 1.7.12.rc0.129.g61b472e _______________________________________________ help-smalltalk mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-smalltalk
