- Simplify build handling and respect build flags[1] - Switch to options helpers[1] - Remove unneeded @dir's from plist[1] - Add build dependency on gmake - Fix conkeror script to be PREFIX independent - Update dependency on firefox to be inclusive PR: 205576 Submitted by: amdmi3[1]
15 lines
308 B
Text
15 lines
308 B
Text
--- 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} %%DATADIR%%/application.ini "$@"
|
|
+fi
|
|
+
|