From 3d5c57c7f95927690cbfd5a890cbca676cc167ac Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Tue, 19 Jul 2011 15:58:10 +0200 Subject: [PATCH] Make reportbug helper script to work with any installed xulrunner package Thanks to Luca Capello! --- debian/changelog | 2 ++ debian/conkeror.bug-script | 10 +++------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1cb4b18..2b4351d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ conkeror (0.9.3+git110719-1) UNRELEASED; urgency=low * New upstream snapshot - Fullscreen toggling support, use F11 or M-S-Return + * Make reportbug helper script to work with any installed xulrunner + package. Thanks to Luca Capello! -- Axel Beckert Tue, 19 Jul 2011 15:21:26 +0200 diff --git a/debian/conkeror.bug-script b/debian/conkeror.bug-script index 96de002..953fb1b 100644 --- a/debian/conkeror.bug-script +++ b/debian/conkeror.bug-script @@ -1,9 +1,5 @@ #!/bin/sh -if [ -x /usr/lib/xulrunner-1.9.1/reportbug-helper-script ]; then - /usr/lib/xulrunner-1.9.1/reportbug-helper-script conkeror -fi - -if [ -x /usr/lib/xulrunner-1.9.2/reportbug-helper-script ]; then - /usr/lib/xulrunner-1.9.2/reportbug-helper-script conkeror -fi +for xrrbhs in /usr/lib/xulrunner-*/reportbug-helper-script; do + $xrrbhs conkeror +done -- 2.11.4.GIT