summaryrefslogtreecommitdiff
path: root/python/setup.py.in
diff options
context:
space:
mode:
authorChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 14:26:10 -0500
committerChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2012-11-18 14:26:10 -0500
commite3f91a35c4eed78fafcbaf8b480c425188385989 (patch)
treeb48417e34e33a797e1ace76ccf764462d5d41831 /python/setup.py.in
parent553bf9cca35a3784c3d6a1faf82fd9cfcbcf0ff9 (diff)
fix python pointers into training lib
Diffstat (limited to 'python/setup.py.in')
-rw-r--r--python/setup.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/setup.py.in b/python/setup.py.in
index f191ef8b..dac72903 100644
--- a/python/setup.py.in
+++ b/python/setup.py.in
@@ -3,7 +3,7 @@ from distutils.extension import Extension
import re
INC = ['..', 'src/', '../decoder', '../utils', '../mteval']
-LIB = ['../decoder', '../utils', '../mteval', '../training', '../klm/lm', '../klm/util', '../klm/search']
+LIB = ['../decoder', '../utils', '../mteval', '../training/utils', '../klm/lm', '../klm/util', '../klm/search']
# Set automatically by configure
LIBS = re.findall('-l([^\s]+)', '@LIBS@')
@@ -17,7 +17,7 @@ ext_modules = [
sources=['src/_cdec.cpp'],
include_dirs=INC,
library_dirs=LIB,
- libraries=LIBS + ['z', 'cdec', 'utils', 'mteval', 'training', 'klm', 'klm_util', 'ksearch'],
+ libraries=LIBS + ['z', 'cdec', 'utils', 'mteval', 'training_utils', 'klm', 'klm_util', 'ksearch'],
extra_compile_args=CPPFLAGS,
extra_link_args=LDFLAGS),
Extension(name='cdec.sa._sa',