mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
11 lines
359 B
Python
11 lines
359 B
Python
#! /usr/bin/python
|
|
|
|
import sys, os.path
|
|
from distutils.util import get_platform
|
|
|
|
# because we use extension modules, we need a platform+version-specific
|
|
# libdir. If we were using a pure-python module, this would just be "lib".
|
|
plat_specifier = ".%s-%s" % (get_platform(), sys.version[0:3])
|
|
libdir = os.path.join("build", "lib" + plat_specifier)
|
|
print libdir
|