diff options
author | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 21:09:06 +0000 |
---|---|---|
committer | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 21:09:06 +0000 |
commit | a40598ded2a7752e55c19b4a10930986ced152b7 (patch) | |
tree | ab1a6d92d33c60c3c15713db814e88cd4ce2fa89 /native_client_sdk | |
parent | 83a9f6580bdde59d814e11f01114d964a719224a (diff) | |
download | chromium_src-a40598ded2a7752e55c19b4a10930986ced152b7.zip chromium_src-a40598ded2a7752e55c19b4a10930986ced152b7.tar.gz chromium_src-a40598ded2a7752e55c19b4a10930986ced152b7.tar.bz2 |
[NaCl SDK] Another fix for archiver. Build succeeds, but the file is in the wrong place.
BUG=none
TEST=none
TBR=binji@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10223012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rwxr-xr-x | native_client_sdk/src/build_tools/build_sdk.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py index 0d65b4e..5ad7a30 100755 --- a/native_client_sdk/src/build_tools/build_sdk.py +++ b/native_client_sdk/src/build_tools/build_sdk.py @@ -684,8 +684,7 @@ def main(args): buildbot_common.BuildStep('Archive build') bucket_path = 'nativeclient-mirror/nacl/nacl_sdk/%s' % \ build_utils.ChromeVersion() - buildbot_common.Archive(os.path.relpath(tarfile, OUT_DIR), - bucket_path, OUT_DIR) + buildbot_common.Archive(tarname, bucket_path, os.path.dirname(tarfile)) # generate "manifest snippet" for this archive. if not skip_test_updater: |