summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-03-22 08:48:10 -0700
committerSean Whitton <spwhitton@spwhitton.name>2016-03-22 08:48:10 -0700
commit483bb2ae23fdb542de0c3de31268a1e7b810c04d (patch)
tree02b1ebeed6697f55234fdf906c7c3509ed016f6d
parent2e91b6061760c6341b46d846b6804df3b7c65b3f (diff)
Revert "dh_xul-ext: stop looking for iceweasel- prefix"
This reverts commit 9d2d5bd9f67c0932f8a2f7a365dbb128a5b29ee4.
-rwxr-xr-xdh_xul-ext4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_xul-ext b/dh_xul-ext
index 2251ebc..221135b 100755
--- a/dh_xul-ext
+++ b/dh_xul-ext
@@ -55,7 +55,7 @@ class XulApp(object):
enabled even if the version of the XUL application is higher than the
specified maximum version in this case.
- Firefox 10 and Thunderbird/Icedove 10 defaults add-ons to
+ Firefox/Iceweasel 10 and Thunderbird/Icedove 10 defaults add-ons to
compatible."""
return(self.xul_id in (FIREFOX_ID, THUNDERBIRD_ID) and
@@ -270,7 +270,7 @@ def has_no_xpi_depends():
def get_provided_package_names(package, supported_apps):
ext_name = package
- for prefix in ("firefox-", "mozilla-", "xul-ext-"):
+ for prefix in ("firefox-", "iceweasel-", "mozilla-", "xul-ext-"):
if ext_name.startswith(prefix):
ext_name = ext_name[len(prefix):]