diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-04-11 22:30:46 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-04-11 22:30:46 -0400 |
commit | 86815ce06c9263d033264196f6292319c1f8b695 (patch) | |
tree | de7fa5c0942f039bbd7f3f417e4324d19a36645c /.prefix | |
parent | 6aeb41f4ce96f92e0c86810025554ed6ab97dec4 (diff) |
fix a typo in x-pdf
Diffstat (limited to '.prefix')
-rwxr-xr-x | .prefix/bin/x-pdf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.prefix/bin/x-pdf b/.prefix/bin/x-pdf index 020ff7e..a9893c0 100755 --- a/.prefix/bin/x-pdf +++ b/.prefix/bin/x-pdf @@ -2,7 +2,7 @@ if [ -x "`which okular 2>/dev/null`" ]; then okular "$@" -if [ -x "`which evince 2>/dev/null`" ]; then +elif [ -x "`which evince 2>/dev/null`" ]; then evince "$@" elif [ -x "`which xpdf 2>/dev/null`" ]; then xpdf "$@" |