diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-10-22 18:34:26 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-10-22 18:35:29 +0800 |
commit | e5648bccea44c87c00f72f7501048810276a6d27 (patch) | |
tree | b5d37aadfc776aaa596830039a39bee52fdd6b5b | |
parent | 506d80481e303bdc03cf93e0688a96d2253bf822 (diff) | |
download | gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar.gz gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar.bz2 gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar.lz gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar.xz gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.tar.zst gsoc2013-empathy-e5648bccea44c87c00f72f7501048810276a6d27.zip |
Use AM_CPPFLAGS instead of deprecated INCLUDES
-rw-r--r-- | nautilus-sendto-plugin/Makefile.am | 2 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/account-plugins/Makefile.am | 2 | ||||
-rw-r--r-- | ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nautilus-sendto-plugin/Makefile.am b/nautilus-sendto-plugin/Makefile.am index 0bd286f6d..347988219 100644 --- a/nautilus-sendto-plugin/Makefile.am +++ b/nautilus-sendto-plugin/Makefile.am @@ -1,6 +1,6 @@ plugindir = $(libdir)/nautilus-sendto/plugins -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir)/libempathy \ -I$(top_srcdir)/libempathy-gtk \ diff --git a/ubuntu-online-accounts/cc-plugins/account-plugins/Makefile.am b/ubuntu-online-accounts/cc-plugins/account-plugins/Makefile.am index 0006ced33..9167c454d 100644 --- a/ubuntu-online-accounts/cc-plugins/account-plugins/Makefile.am +++ b/ubuntu-online-accounts/cc-plugins/account-plugins/Makefile.am @@ -1,6 +1,6 @@ plugindir = $(ACCOUNTS_PROVIDER_PLUGIN_DIR) -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir)/libempathy \ -I$(top_srcdir)/libempathy-gtk \ diff --git a/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am b/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am index 16fcd41b4..335bf2c3a 100644 --- a/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am +++ b/ubuntu-online-accounts/cc-plugins/app-plugin/Makefile.am @@ -1,6 +1,6 @@ plugindir = $(ACCOUNTS_APP_PLUGIN_DIR) -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir) \ -I$(top_srcdir)/libempathy \ |