You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import os.path
|
|
|
|
lib_path = os.path.abspath('lib')
|
|
|
|
shared_path = lib_path
|
|
if 'MPD_SHARED_LIB' in os.environ:
|
|
shared_path = os.environ['MPD_SHARED_LIB']
|
|
tarball_path = os.path.join(shared_path, 'download')
|
|
src_path = os.path.join(shared_path, 'src')
|