
$FreeBSD: www/xpi-conkeror/files/patch-conkeror 300897 2012-07-14 14:29:18Z beat $

--- conkeror.orig
+++ conkeror
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+XULRUNNER=$(which xulrunner)
+
+if [ -z "${XULRUNNER}" ]; then 
+	echo Unable to locate xulrunner binary.
+elif [ ! -x "${XULRUNNER}" ]; then
+	echo ${XULRUNNER} is not executable.
+else
+	exec ${XULRUNNER} /usr/local/share/conkeror/application.ini
+fi
+
