summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xplugins-scripts/check_log.sh4
-rw-r--r--plugins-scripts/utils.sh.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins-scripts/check_log.sh b/plugins-scripts/check_log.sh
index 8145bba..601c693 100755
--- a/plugins-scripts/check_log.sh
+++ b/plugins-scripts/check_log.sh
@@ -70,8 +70,8 @@ CHMOD="/bin/chmod"
70TOUCH="/bin/touch" 70TOUCH="/bin/touch"
71 71
72PROGNAME=`/bin/basename $0` 72PROGNAME=`/bin/basename $0`
73PROGPATH=`echo $0 | /bin/sed -e 's,[\\/][^\\/][^\\/]*$,,'` 73PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'`
74REVISION=`echo '$Revision$' | /bin/sed -e 's/[^0-9.]//g'` 74REVISION=`echo '$Revision$' | sed -e 's/[^0-9.]//g'`
75 75
76. $PROGPATH/utils.sh 76. $PROGPATH/utils.sh
77 77
diff --git a/plugins-scripts/utils.sh.in b/plugins-scripts/utils.sh.in
index 51727b7..7750716 100644
--- a/plugins-scripts/utils.sh.in
+++ b/plugins-scripts/utils.sh.in
@@ -14,10 +14,10 @@ fi
14 14
15print_revision() { 15print_revision() {
16 echo "$1 (@PACKAGE@ @VERSION@) $2" 16 echo "$1 (@PACKAGE@ @VERSION@) $2"
17 $ECHO "@WARRANTY@" | /bin/sed -e 's/\n/ /g' 17 $ECHO "@WARRANTY@" | sed -e 's/\n/ /g'
18} 18}
19 19
20support() { 20support() {
21 $ECHO "@SUPPORT@" | /bin/sed -e 's/\n/ /g' 21 $ECHO "@SUPPORT@" | sed -e 's/\n/ /g'
22} 22}
23 23