summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-11-23 09:13:18 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-11-23 09:13:18 +0200
commit2068f4611220bbe90c98b65c58dd1b6c62858152 (patch)
tree05302dfabdf9ebfd7a8278d08962a589d28f3dfd /python
parenteb72616113a82daf76fecc8ed1da6a0d16f65cb5 (diff)
downloadlibrpm-tizen-2068f4611220bbe90c98b65c58dd1b6c62858152.tar.gz
librpm-tizen-2068f4611220bbe90c98b65c58dd1b6c62858152.tar.bz2
librpm-tizen-2068f4611220bbe90c98b65c58dd1b6c62858152.zip
Remove unnecessary paths from python includepath
- no private includes from lib and build are needed - document rpmdb and rpmio private needs
Diffstat (limited to 'python')
-rw-r--r--python/Makefile.am6
1 files changed, 2 insertions, 4 deletions
diff --git a/python/Makefile.am b/python/Makefile.am
index b7956a20a..7a10322c8 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -5,10 +5,8 @@ EXTRA_DIST = rpmdebug-py.c rpm/__init__.py
if PYTHON
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/rpm
AM_CPPFLAGS += -I$(top_srcdir)/python
-AM_CPPFLAGS += -I$(top_srcdir)/build
-AM_CPPFLAGS += -I$(top_srcdir)/lib
-AM_CPPFLAGS += -I$(top_srcdir)/rpmdb
-AM_CPPFLAGS += -I$(top_srcdir)/rpmio
+AM_CPPFLAGS += -I$(top_srcdir)/rpmdb # XXX legacy.h
+AM_CPPFLAGS += -I$(top_srcdir)/rpmio # XXX fts.h
AM_CPPFLAGS += @WITH_LIBELF_INCLUDE@
AM_CPPFLAGS += @WITH_NSS_INCLUDE@
AM_CPPFLAGS += @WITH_POPT_INCLUDE@