diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-03-24 22:20:37 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:08 +0800 |
commit | 6d67672852072737fee47d2ef43031929520afd6 (patch) | |
tree | 33e5c4a89e2edfa3c5faa0443cd4acc81d376443 | |
parent | e9d88fb3832f3014e8ed9aaf2ce5bb1f4b96fd49 (diff) | |
download | gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar.gz gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar.bz2 gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar.lz gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar.xz gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.tar.zst gsoc2013-empathy-6d67672852072737fee47d2ef43031929520afd6.zip |
Include yell before anything else
Since we want to build against our copy of yell. Otherwise if
you have yell installed in /usr, it'll be picked from there as
we get -I/usr/include/telepathy-1.0 and telepathy-yell is installed
as telepathy-yell/telepathy-yell.h in that directory.
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 822261625..7fcb9e435 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,8 @@ include $(top_srcdir)/tools/flymake.mk CPPFLAGS_COMMON = \ - $(EMPATHY_CFLAGS) \ $(YELL_CFLAGS) \ + $(EMPATHY_CFLAGS) \ $(EDS_CFLAGS) \ $(ERROR_CFLAGS) \ -I$(top_srcdir) \ |