diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2013-12-20 23:33:52 +0000 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2013-12-20 23:34:29 +0000 |
commit | 91666c36486b2a3b4c9eb8572367025b94631e63 (patch) | |
tree | 6a7eae5828e547fae0c1b1948463aa95822e9fdc /src/gst | |
parent | 35d8d9c7c33eb5a6aa6438548a51d10f76c4d7fd (diff) | |
download | totem-91666c36486b2a3b4c9eb8572367025b94631e63.tar.gz |
build: Fix use of a deprecated automake variable
‘INCLUDES’ has been superseded by ‘AM_CPPFLAGS’.
Diffstat (limited to 'src/gst')
-rw-r--r-- | src/gst/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gst/Makefile.am b/src/gst/Makefile.am index 31c3c322b..4529192ad 100644 --- a/src/gst/Makefile.am +++ b/src/gst/Makefile.am @@ -71,7 +71,7 @@ libtotemrtlhelpers_la_LDFLAGS= -no-undefined include $(top_srcdir)/Makefile.decl pwd=`pwd` -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/plparse \ -DTEST_SRCDIR=\""$(srcdir)/"\" |