diff options
author | Raphael <raphael@google.com> | 2009-10-14 06:52:59 -0700 |
---|---|---|
committer | Raphael <raphael@google.com> | 2009-10-14 07:21:26 -0700 |
commit | 62437b9984649c80aa3a7d93750efdc5ff206d07 (patch) | |
tree | 5bef627736c72b0c4adeb6070c3baaaceed8674b /build/tools | |
parent | e19c02984fd10c9fa35b036aafc1181cb8384069 (diff) | |
download | android_development-62437b9984649c80aa3a7d93750efdc5ff206d07.tar.gz android_development-62437b9984649c80aa3a7d93750efdc5ff206d07.tar.bz2 android_development-62437b9984649c80aa3a7d93750efdc5ff206d07.zip |
Windows SDK: copy SDK Setup.exe at root of SDK.
Also add a source.properties (we'll install it on the vendor/google
script part of the script).
SDK BUG 2173135
Change-Id: Icb0f22a65ffd819bf7b0f48adbec51cbc1243f71
Diffstat (limited to 'build/tools')
-rwxr-xr-x | build/tools/make_windows_sdk.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/tools/make_windows_sdk.sh b/build/tools/make_windows_sdk.sh index 001ab8cc8..97c7bc77e 100755 --- a/build/tools/make_windows_sdk.sh +++ b/build/tools/make_windows_sdk.sh @@ -99,7 +99,7 @@ function build() { fastboot \ hprof-conv \ mksdcard \ - sqlite3 \ + sdklauncher sqlite3 \ zipalign \ || die "Build failed" } @@ -153,6 +153,9 @@ function package() { mkdir -pv "$LIB"/x86_64 cp -v prebuilt/windows-x86_64/swt/swt.jar "$LIB"/x86_64/ + # Move the SDK Setup (aka sdklauncher) to the root of the SDK (it was copied in tools above) + mv "$TOOLS/sdklauncher.exe" "$TEMP_SDK_DIR/SDK Setup.exe" + # If you want the emulator NOTICE in the tools dir, uncomment the following line: # cp -v external/qemu/NOTICE "$TOOLS"/emulator_NOTICE.txt |