diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-07-24 11:55:37 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-07-24 11:55:37 +0300 |
commit | f763a218799f3a50515ac2893dd6a12fd0b35a4a (patch) | |
tree | 8eb76560f080653557c71040b2f53744fb15b3e7 /python/Makefile.am | |
parent | 8a2706cd117f37262f59d6b45bb32af8978a19d7 (diff) | |
download | librpm-tizen-f763a218799f3a50515ac2893dd6a12fd0b35a4a.tar.gz librpm-tizen-f763a218799f3a50515ac2893dd6a12fd0b35a4a.tar.bz2 librpm-tizen-f763a218799f3a50515ac2893dd6a12fd0b35a4a.zip |
Use python distutils for determining include etc paths
Diffstat (limited to 'python/Makefile.am')
-rw-r--r-- | python/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/Makefile.am b/python/Makefile.am index 1b8c83ae2..24153b7e5 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -4,8 +4,8 @@ AUTOMAKE_OPTIONS = 1.4 foreign LINT = splint -pylibdir = ${prefix}/lib@MARK64@/python@WITH_PYTHON_VERSION@ -pyincdir = $(prefix)/include/python@WITH_PYTHON_VERSION@ +pylibdir = @WITH_PYTHON_LIB@ +pyincdir = @WITH_PYTHON_INCLUDE@ SUBDIRS = rpm @@ -20,6 +20,7 @@ INCLUDES = -I. \ @WITH_BEECRYPT_INCLUDE@ \ @WITH_POPT_INCLUDE@ \ -I$(top_srcdir)/misc \ + -I$(top_srcdir)/ \ -I$(pyincdir) \ @INCPATH@ |