From dc90d423a547f3f948953e427b681f2834c8a9d6 Mon Sep 17 00:00:00 2001 From: Tomofumi Hayashi Date: Wed, 25 Jan 2017 13:53:26 +0900 Subject: Change automake python macro to get python path Previously install path for python binding is fixed, as lib/python2.7/site-packages and other version/enironement is not supported. This change introduces automake's python macro and gets the install path from environment dynamically. Change-Id: I6535107d4bde61976fbdf5392d460beb1049658e Signed-off-by: Tomofumi Hayashi --- src/vpp-api/python/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vpp-api') diff --git a/src/vpp-api/python/Makefile.am b/src/vpp-api/python/Makefile.am index 16c47627..cd8db4f6 100644 --- a/src/vpp-api/python/Makefile.am +++ b/src/vpp-api/python/Makefile.am @@ -41,7 +41,8 @@ libpneum_la_CPPFLAGS = # TODO: Support both Python 2 and 3. install-exec-local: cd $(srcdir); \ - mkdir -p $(prefix)/lib/python2.7/site-packages; \ + mkdir -p $(pythondir); \ + mkdir -p $(pyexecdir); \ PYTHONUSERBASE=$(prefix) \ python setup.py build_ext -L $(libdir) \ -I $(prefix)/include/ install --user -- cgit 1.2.3-korg