Dave Plater
df8b44b1ca
sync new csound OBS-URL: https://build.opensuse.org/request/show/691977 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/csound?expand=0&rev=25
23 lines
877 B
Diff
23 lines
877 B
Diff
Index: csound-6.12.2/installer/misc/vim/cshelp
|
|
===================================================================
|
|
--- csound-6.12.2.orig/installer/misc/vim/cshelp 2018-11-07 16:05:23.000000000 +0200
|
|
+++ csound-6.12.2/installer/misc/vim/cshelp 2019-04-05 15:32:23.670308342 +0200
|
|
@@ -3,7 +3,9 @@
|
|
BROWSER_CMD=""
|
|
|
|
if [ "${DISPLAY}" != "" ] ; then
|
|
- if ( which links | grep -q -G -e "^/usr" ) ; then
|
|
+ if ( which xdg-open | grep -E -e "^(/usr)?/bin" ); then
|
|
+ BROWSER_CMD="xdg-open" ;
|
|
+ elif ( which links | grep -q -G -e "^/usr" ) ; then
|
|
BROWSER_CMD="links -g" ;
|
|
elif ( which konqueror | grep -q -G -e "^/opt" ) ; then
|
|
BROWSER_CMD="konqueror" ;
|
|
@@ -38,5 +40,5 @@ else
|
|
OPNAME="${1}" ;
|
|
fi
|
|
|
|
-exec ${BROWSER_CMD} "/usr/local/share/doc/csound/manual/${OPNAME}.html"
|
|
+exec ${BROWSER_CMD} "/usr/share/doc/csound-manual/${OPNAME}.html"
|
|
|