Skip to content

Commit

Permalink
Stop building a JAR file.
Browse files Browse the repository at this point in the history
It's no longer necessary to build a JAR file in the newer versions of
Thunderbird we're targeting, and it doesn't really provide any benefits.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
  • Loading branch information
bk2204 committed Nov 17, 2013
1 parent bb937ab commit fb945ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ SHELL = bash
all:
@ver=$$(grep "<version>" install.rdf | perl -p -e 's/[^\d]//g') ;\
name=$$(basename $$(pwd)) ; \
cd chrome ; rm -f $${name}.jar; zip -r $${name}.jar content locale -x '*/.git/*' > /dev/null; \
cd .. ; rm -f $${name}_v$$ver.xpi; zip -r $${name}_v$$ver.xpi chrome/*.jar install.rdf chrome.manifest makefile defaults -x '*/.git/*' > /dev/null; \
rm -f $${name}_v$$ver.xpi; zip -r $${name}_v$$ver.xpi chrome install.rdf chrome.manifest Makefile defaults -x '*/.git/*' > /dev/null; \
echo "$${name}_v$$ver.xpi Done."
4 changes: 2 additions & 2 deletions chrome.manifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://extedit/content/extedit.xul
overlay chrome://global/content/customizeToolbar.xul chrome://extedit/content/extedit.xul
content extedit jar:chrome/extedit.jar!/content/
locale extedit en-US jar:chrome/extedit.jar!/locale/en-US/extedit/
content extedit /chrome/content/
locale extedit en-US /chrome/locale/en-US/extedit/

0 comments on commit fb945ac

Please sign in to comment.