diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-09 20:15:19 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-09 20:15:19 +0800 |
commit | 9496ad05eb86ce5793030e47e88aa01dff48cb62 (patch) | |
tree | 723b728d35f75ae38082834e040fae822a127432 /python | |
parent | 881aadbd2abd16a1cc3d64b267cd06b08b629a2d (diff) | |
download | gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar.gz gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar.bz2 gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar.lz gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar.xz gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.tar.zst gsoc2013-empathy-9496ad05eb86ce5793030e47e88aa01dff48cb62.zip |
Empathy should not require python-config. Fixes bug #525562 (Frederic Peters).
svn path=/trunk/; revision=880
Diffstat (limited to 'python')
-rw-r--r-- | python/pyempathy/Makefile.am | 3 | ||||
-rw-r--r-- | python/pyempathygtk/Makefile.am | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/python/pyempathy/Makefile.am b/python/pyempathy/Makefile.am index c11eedbc3..a2b76b264 100644 --- a/python/pyempathy/Makefile.am +++ b/python/pyempathy/Makefile.am @@ -6,7 +6,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -DDATADIR=\""$(datadir)"\" \ $(PYTHON_BINDING_CFLAGS) \ - `python-config --cflags` \ + $(PYTHON_INCLUDES) \ $(WARN_CFLAGS) BUILT_SOURCES = \ @@ -24,7 +24,6 @@ empathy_la_LIBADD = \ $(top_builddir)/libempathy/libempathy.la empathy_la_LDFLAGS = \ - `python-config --libs` \ -module -avoid-version pyempathy.c: pyempathy.override pyempathy.defs diff --git a/python/pyempathygtk/Makefile.am b/python/pyempathygtk/Makefile.am index 04aa5762f..39f776b27 100644 --- a/python/pyempathygtk/Makefile.am +++ b/python/pyempathygtk/Makefile.am @@ -6,7 +6,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -DDATADIR=\""$(datadir)"\" \ $(PYTHON_BINDING_CFLAGS) \ - `python-config --cflags` + $(PYTHON_INCLUDES) BUILT_SOURCES = \ pyempathygtk.c @@ -24,7 +24,6 @@ empathygtk_la_LIBADD = \ $(top_builddir)/libempathy-gtk/libempathy-gtk.la empathygtk_la_LDFLAGS = \ - `python-config --libs` \ -module -avoid-version pyempathygtk.c: pyempathygtk.override pyempathygtk.defs |