You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by cj...@apache.org on 2017/11/22 19:05:12 UTC

[incubator-mxnet] branch master updated: [CMAKE] Fix cmake library path when installing python package (#8680)

This is an automated email from the ASF dual-hosted git repository.

cjolivier01 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ad6eab  [CMAKE] Fix cmake library path when installing python package (#8680)
5ad6eab is described below

commit 5ad6eab643ad7725338af9204f2fc1e46a1965ea
Author: Pedro Larroy <92...@users.noreply.github.com>
AuthorDate: Wed Nov 22 11:05:09 2017 -0800

    [CMAKE] Fix cmake library path when installing python package (#8680)
---
 python/mxnet/libinfo.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/mxnet/libinfo.py b/python/mxnet/libinfo.py
index d4d100e..551c786 100644
--- a/python/mxnet/libinfo.py
+++ b/python/mxnet/libinfo.py
@@ -31,7 +31,7 @@ def find_lib_path():
     """
     curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
     api_path = os.path.join(curr_path, '../../lib/')
-    cmake_build_path = os.path.join(curr_path, '../../build/Release/')
+    cmake_build_path = os.path.join(curr_path, '../../build/')
     dll_path = [curr_path, api_path, cmake_build_path]
     if os.name == 'nt':
         dll_path.append(os.path.join(curr_path, '../../build'))

-- 
To stop receiving notification emails like this one, please contact
['"commits@mxnet.apache.org" <co...@mxnet.apache.org>'].