From 7997693e254872dffad9dbb7dc0fb5024226387e Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sun, 21 Dec 2008 04:07:16 -0600 Subject: [PATCH] It'll probably be useful to have the libraries being used in a separate list. Signed-off-by: Evan Broder --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 39447bb..61b5d42 100755 --- a/setup.py +++ b/setup.py @@ -17,6 +17,8 @@ include_dirs = [os.path.join(os.path.dirname(__file__), 'afs'), '%s/include' % root] library_dirs = ['%s/lib' % root, '%s/lib/afs' % root] +libraries = ['bos', 'volser', 'vldb', 'afsrpc', 'afsauthent', 'cmd', + 'usd', 'audit'] setup( name="PyAFS", @@ -30,8 +32,7 @@ setup( ext_modules=[ Extension("afs._pts", ["afs/_pts.pyx"], - libraries=['bos', 'volser', 'vldb', 'afsrpc', 'afsauthent', - 'cmd', 'usd', 'audit'], + libraries=libraries, include_dirs=include_dirs, library_dirs=library_dirs) ], -- 1.7.9.5