{android,win32}/build.py: move code to python/build/dirs.py
This commit is contained in:
9
python/build/dirs.py
Normal file
9
python/build/dirs.py
Normal file
@ -0,0 +1,9 @@
|
||||
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')
|
Reference in New Issue
Block a user