From: Evan Broder Date: Sun, 21 Dec 2008 10:07:16 +0000 (-0600) Subject: It'll probably be useful to have the libraries being used in a separate list. X-Git-Tag: 0.1.0~90 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/7997693e254872dffad9dbb7dc0fb5024226387e It'll probably be useful to have the libraries being used in a separate list. Signed-off-by: Evan Broder --- 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) ],