help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] [PATCH 1/5] build: use $(AM_CPPFLAGS), not $(INCLUDES)


From: Stefano Lattarini
Subject: [Help-smalltalk] [PATCH 1/5] build: use $(AM_CPPFLAGS), not $(INCLUDES)
Date: Mon, 20 Aug 2012 21:56:20 +0200

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 <address@hidden>
---
 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  <address@hidden>
+
+       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  <address@hidden>
 
        * 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]