Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 457820
Collapse All | Expand All

(-)/usr/portage/www-client/conkeror/files/conkeror.sh (-2 / +5 lines)
Lines 1-7 Link Here
1
#!/bin/bash
1
#!/bin/bash
2
# Wrapper script for conkeror
2
# Wrapper script for conkeror
3
3
4
xr=$(type -p firefox)
4
for x in firefox firefox-bin
5
[[ -n ${xr} ]] && exec "${xr}" -app /usr/share/conkeror/application.ini "$@"
5
do
6
    xr=$(type -p ${x})
7
    [[ -n ${xr} ]] && exec "${xr}" -app /usr/share/conkeror/application.ini "$@"
8
done
6
echo "$0: firefox required, but not found." >&2
9
echo "$0: firefox required, but not found." >&2
7
exit 1
10
exit 1

Return to bug 457820