]> SALOME platform Git repositories - tools/install.git/commitdiff
Salome HOME
SALOME 7.3.0 preparation
authorvsr <vsr@opencascade.com>
Mon, 23 Dec 2013 14:06:31 +0000 (14:06 +0000)
committervsr <vsr@opencascade.com>
Mon, 23 Dec 2013 14:06:31 +0000 (14:06 +0000)
config_files/release_notes.sh

index 5d83878a3731103290f5e39ffdea8288855f9bb0..1175bac389835207fb29d5d8407d0170409df809 100755 (executable)
 
 # This procedure checks if the Release Notes file can be shown.
 # Returns 0 in success and 1 if any error occurs.
+
+VIEWER_PROGRAMS="acroread kpdf kghostview xpdf evince"
+
 check_enabled()
 {
     ROOT_DIR=`(cd ${SCRIPT_DIR}/.. ; pwd)`;
     # 1. check if there is appropriate PDF files viewer
-    for r in acroread kpdf kghostview xpdf ; do
+    for r in ${VIEWER_PROGRAMS} ; do
        reader=`which ${r} 2>/dev/null`
        if [ "$?" = "0" ] ; then
            break;
@@ -40,7 +43,7 @@ execute()
 {
     ROOT_DIR=`(cd ${SCRIPT_DIR}/.. ; pwd)`;
     # 1. find appropriate PDF files viewer
-    for r in acroread kpdf kghostview xpdf ; do
+    for r in ${VIEWER_PROGRAMS} ; do
        reader=`which ${r} 2> /dev/null`
        if [ "$?" = "0" ] ; then
            break;