Fix dump vars.

Now you have to run config.mk instead of envsetup.mk to dump vars in the build system.

Change-Id: I6caaa7eb13dfd55f07303963f6337d51fb126bb9
This commit is contained in:
Ying Wang 2010-09-03 17:45:46 -07:00
parent 60850ac924
commit 77f31fe728
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ def FindSymbolsDir():
path = os.environ['ANDROID_PRODUCT_OUT'] + "/symbols"
except:
cmd = "CALLED_FROM_SETUP=true BUILD_SYSTEM=build/core " \
+ "SRC_TARGET_DIR=build/target make -f build/core/envsetup.mk " \
+ "SRC_TARGET_DIR=build/target make -f build/core/config.mk " \
+ "dumpvar-abs-TARGET_OUT_UNSTRIPPED"
stream = os.popen(cmd)
str = stream.read()