[PC-BSD Commits] r2990 - pbibuild/modules/thunderbird
svn at pcbsd.org
svn at pcbsd.org
Tue Nov 25 09:39:51 PST 2008
Author: kris
Date: 2008-11-25 09:39:51 -0800 (Tue, 25 Nov 2008)
New Revision: 2990
Modified:
pbibuild/modules/thunderbird/build.sh
pbibuild/modules/thunderbird/pbi.conf
Log:
Another fix to tb module for 1.x to make TB less than 1G :P
Modified: pbibuild/modules/thunderbird/build.sh
===================================================================
--- pbibuild/modules/thunderbird/build.sh 2008-11-25 17:21:36 UTC (rev 2989)
+++ pbibuild/modules/thunderbird/build.sh 2008-11-25 17:39:51 UTC (rev 2990)
@@ -17,7 +17,7 @@
# Copy over the lightning-xpi extensions
if [ -d "/usr/local/lib/thunderbird/extensions" ]
then
- cd /usr/local/lib/thunderbird/extensions/
+ cd /usr/local/lib/thunderbird/extensions
tar cvf - . | tar xvf - -C ${PBIDIR}/autolibs/thunderbird/extensions/
fi
@@ -54,7 +54,10 @@
rm -rf /${PBIDIR}/autolibs/thunderbird/extensions/lang*
# Copy over the lang-packs
-tar cvf - -C /usr/local/lib/xpi/ . | tar xvf - -C ${PBIDIR}/autolibs/thunderbird/extensions/
+if [ -d "/usr/local/lib/xpi" ]
+then
+ tar cvf - -C /usr/local/lib/xpi/ . | tar xvf - -C ${PBIDIR}/autolibs/thunderbird/extensions/
+fi
# Now append our prefs file with the default browser script so that users
Modified: pbibuild/modules/thunderbird/pbi.conf
===================================================================
--- pbibuild/modules/thunderbird/pbi.conf 2008-11-25 17:21:36 UTC (rev 2989)
+++ pbibuild/modules/thunderbird/pbi.conf 2008-11-25 17:39:51 UTC (rev 2990)
@@ -33,6 +33,6 @@
# Build Key - Change this to anything else to trigger a rebuild
# - The rebuild will take place even if port is still the same ver
-BUILDKEY="02"
+BUILDKEY="01"
export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY
More information about the Commits
mailing list