summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rw-r--r--src/xpi.mk2
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 18ea288..289a479 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -28,6 +28,8 @@ mozilla-devscripts (0.16) UNRELEASED; urgency=low
- add ${xpi:Provides} and ${xpi:Enhances} to support the Debian policy for
packaging extensions: http://wiki.debian.org/Teams/DebianMozExtTeam
- update src/xpi.mk
+ - "mkdir -p" can be run in all cases
+ - update src/xpi.mk
* packaging:
- allow uploads done by Debian Maintainers
@@ -49,7 +51,7 @@ mozilla-devscripts (0.16) UNRELEASED; urgency=low
field in debian/control for the target package
- update src/xpi.mk
- -- Benjamin Drung <bdrung@ubuntu.com> Wed, 23 Sep 2009 01:34:48 +0200
+ -- Benjamin Drung <bdrung@ubuntu.com> Wed, 23 Sep 2009 23:06:27 +0200
mozilla-devscripts (0.15) unstable; urgency=low
diff --git a/src/xpi.mk b/src/xpi.mk
index 5c1db2e..35cd037 100644
--- a/src/xpi.mk
+++ b/src/xpi.mk
@@ -211,7 +211,7 @@ install/$(MOZ_EXTENSION_PKG):: xpi-install
# ### general helper targets
unzip-%-stamp: $(XPI_FILE)
- [ -d $(TEMPDIR) ] || mkdir -p $(TEMPDIR)
+ mkdir -p $(TEMPDIR)
ifneq (,$(MOZ_XPI_DOCUMENTED_LICENSE_FILES))
unzip -o -d $(TEMPDIR) $(XPI_DIR)$* -x $(MOZ_XPI_DOCUMENTED_LICENSE_FILES)
else