Merge pull request #588 from varunbpatil/root_dir
Attempt to change to root dir before executing python script
This commit is contained in:
commit
5c6995ca7f
@ -1,4 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
cd "$(git rev-parse --show-toplevel 2>/dev/null)" >/dev/null 2>&1
|
||||||
python build/mktargets.py --directory codec/decoder --library decoder
|
python build/mktargets.py --directory codec/decoder --library decoder
|
||||||
python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp
|
python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp
|
||||||
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude arm_arch_common_macro.S
|
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude arm_arch_common_macro.S
|
||||||
@ -10,3 +11,4 @@ python build/mktargets.py --directory test/encoder --prefix encoder_unittest
|
|||||||
python build/mktargets.py --directory test/decoder --prefix decoder_unittest
|
python build/mktargets.py --directory test/decoder --prefix decoder_unittest
|
||||||
python build/mktargets.py --directory test/api --prefix api_test
|
python build/mktargets.py --directory test/api --prefix api_test
|
||||||
python build/mktargets.py --directory gtest --library gtest --out build/gtest-targets.mk --cpp-suffix .cc --include gtest-all.cc
|
python build/mktargets.py --directory gtest --library gtest --out build/gtest-targets.mk --cpp-suffix .cc --include gtest-all.cc
|
||||||
|
cd - >/dev/null 2>&1
|
||||||
|
Loading…
Reference in New Issue
Block a user