{android,win32}/build.py: move tarballs to subdirectory "download"
This commit is contained in:
parent
6837a67234
commit
d1d44a4fde
|
@ -37,7 +37,7 @@ mpd_path = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]) or '.', '..
|
||||||
|
|
||||||
# output directories
|
# output directories
|
||||||
lib_path = os.path.abspath('lib')
|
lib_path = os.path.abspath('lib')
|
||||||
tarball_path = lib_path
|
tarball_path = os.path.join(lib_path, 'download')
|
||||||
src_path = os.path.join(lib_path, 'src')
|
src_path = os.path.join(lib_path, 'src')
|
||||||
arch_path = os.path.join(lib_path, host_arch)
|
arch_path = os.path.join(lib_path, host_arch)
|
||||||
build_path = os.path.join(arch_path, 'build')
|
build_path = os.path.join(arch_path, 'build')
|
||||||
|
|
|
@ -19,7 +19,7 @@ mpd_path = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]) or '.', '..
|
||||||
|
|
||||||
# output directories
|
# output directories
|
||||||
lib_path = os.path.abspath('lib')
|
lib_path = os.path.abspath('lib')
|
||||||
tarball_path = lib_path
|
tarball_path = os.path.join(lib_path, 'download')
|
||||||
src_path = os.path.join(lib_path, 'src')
|
src_path = os.path.join(lib_path, 'src')
|
||||||
arch_path = os.path.join(lib_path, host_arch)
|
arch_path = os.path.join(lib_path, host_arch)
|
||||||
build_path = os.path.join(arch_path, 'build')
|
build_path = os.path.join(arch_path, 'build')
|
||||||
|
|
Loading…
Reference in New Issue