Skip to content

Commit

Permalink
bug 561419: Only upload breakpad symbols to FTP for now, to reduce lo…
Browse files Browse the repository at this point in the history
…ad on mv<-->mpt link. r=bsmedberg, a=dholbert_sheriff
  • Loading branch information
Chris AtLee committed Apr 23, 2010
1 parent 590227c commit 852139d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ ifdef MOZ_CRASHREPORTER
echo packing symbols
$(NSINSTALL) -D $(DIST)/$(PKG_PATH)
cd $(DIST)/crashreporter-symbols && \
zip -r9D "../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" .
zip -r9D "../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" .
cd $(DIST)/crashreporter-symbols && \
zip -r9D "../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" . -i "*.sym"
else
ifdef WINCE
ifdef SYMBOLSTORE_PATH
Expand All @@ -215,7 +217,7 @@ endif # MOZ_CRASHREPORTER

uploadsymbols:
ifdef MOZ_CRASHREPORTER
$(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh "$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip"
$(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh "$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
endif

# defined in package-name.mk
Expand Down
1 change: 1 addition & 0 deletions toolkit/mozapps/installer/package-name.mk
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ PKG_SRCPACK_PATH = source/
endif # MOZ_PKG_PRETTYNAMES

# Symbol package naming
SYMBOL_FULL_ARCHIVE_BASENAME = $(PKG_BASENAME).crashreporter-symbols-full
SYMBOL_ARCHIVE_BASENAME = $(PKG_BASENAME).crashreporter-symbols

# Test package naming
Expand Down

0 comments on commit 852139d

Please sign in to comment.