From 6247cabec70657256acf0090d4f05f1b0379ff56 Mon Sep 17 00:00:00 2001 From: Daehyung Park Date: Thu, 11 Feb 2016 12:28:49 -0500 Subject: [PATCH] Changed absolute path into relative path The code refers owner-dependent absolute path. --- python/cssvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cssvm.py b/python/cssvm.py index 288fec7..2b6dd70 100755 --- a/python/cssvm.py +++ b/python/cssvm.py @@ -11,7 +11,7 @@ if sys.platform == 'win32': libsvm = CDLL(path.join(dirname, r'..\windows\libsvm.dll')) else: - libsvm = CDLL(path.join(dirname, '/home/arya/workspace/cssvm/libsvm.so.2')) + libsvm = CDLL(path.join(dirname, '../libsvm.so.2')) except: # For unix the prefix 'lib' is not considered. if find_library('svm'):