aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Reveman <reveman@google.com>2019-10-23 15:19:42 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-10-23 15:19:42 -0700
commitfc9c6b99aa15501e87549caa87f366e047898a8f (patch)
tree3a1a3975c5e410dacac5754dd8d1319499ab1981
parent4a740bc08a97bcf80dca66eab755cc0fa6df9878 (diff)
parentbc448e34d1180de76f948cc85d13c52e90cab27f (diff)
downloadgoldfish-opengl-b_141248619.tar.gz
[vulkan] Update release script to use unstripped .sob_141248619
am: bc448e34d1 Change-Id: Ie68515c30c65d29aad719394cd4f85b516c9b9dc
-rw-r--r--fuchsia/releasepackage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fuchsia/releasepackage.py b/fuchsia/releasepackage.py
index 32309c1f..334fb517 100644
--- a/fuchsia/releasepackage.py
+++ b/fuchsia/releasepackage.py
@@ -41,7 +41,7 @@ if args.arch:
else:
arch = "x64"
-target_name = "%s-shared/libvulkan_goldfish.so" % arch
+target_name = "%s-shared/lib.unstripped/libvulkan_goldfish.so" % arch
git_repo_location = "%s/third_party/goldfish-opengl" % fuchsia_root
package_dir = "libvulkan_goldfish/%s" % arch
package_name = "fuchsia/lib/libvulkan/%s" % package_dir
@@ -96,7 +96,7 @@ shutil.copyfile(source_file_name, full_name)
git_rev = subprocess.check_output(
["git", "-C", git_repo_location, "rev-parse", "HEAD"]).strip()
-cipd_command = ("%s cipd create -in %s -name %s -ref latest"
+cipd_command = ("%s cipd create -in %s -name %s -ref latest"
" -install-mode copy -tag git_revision:%s") % (
fx_path, package_dir, package_name, git_rev)
print cipd_command