summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xsrc/med-xpi-pack2
-rwxr-xr-xsrc/med-xpi-unpack2
3 files changed, 7 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 5a932eb..cf41295 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -28,12 +28,16 @@ mozilla-devscripts (0.16) UNRELEASED; urgency=low
* packaging:
- allow uploads done by Debian Maintainers
- update debian/control
+ * med-xpi-{pack,unpack}:
+ - add parenthesis to $1 to avoid problems if $1 is empty
+ - update src/med-xpi-pack
+ - update src/med-xpi-unpack
[ Alexander Sack <asac@ubuntu.com> ]
+ mozclient: use stable awesome-browser branding branch for firefox-3.0
- update src/mozclient/firefox-3.0.conf
- -- Alexander Sack <asac@ubuntu.com> Tue, 15 Sep 2009 14:51:08 +0200
+ -- Benjamin Drung <bdrung@ubuntu.com> Tue, 22 Sep 2009 09:40:33 +0200
mozilla-devscripts (0.15) unstable; urgency=low
diff --git a/src/med-xpi-pack b/src/med-xpi-pack
index 0e3d8ec..9d3e433 100755
--- a/src/med-xpi-pack
+++ b/src/med-xpi-pack
@@ -38,7 +38,7 @@ usage() {
exit 1;
}
-if [ $1 = "--help" -o $1 = "-h" ] ; then
+if [ "$1" = "--help" -o "$1" = "-h" ] ; then
usage;
fi;
diff --git a/src/med-xpi-unpack b/src/med-xpi-unpack
index 2a22377..778e4b5 100755
--- a/src/med-xpi-unpack
+++ b/src/med-xpi-unpack
@@ -33,7 +33,7 @@ usage() {
exit 1;
}
-if [ $1 = "--help" -o $1 = "-h" ] ; then
+if [ "$1" = "--help" -o "$1" = "-h" ] ; then
usage;
fi;