diff options
-rwxr-xr-x | plugins-scripts/check_log.sh | 4 | ||||
-rw-r--r-- | plugins-scripts/utils.sh.in | 4 |
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" | |||
70 | TOUCH="/bin/touch" | 70 | TOUCH="/bin/touch" |
71 | 71 | ||
72 | PROGNAME=`/bin/basename $0` | 72 | PROGNAME=`/bin/basename $0` |
73 | PROGPATH=`echo $0 | /bin/sed -e 's,[\\/][^\\/][^\\/]*$,,'` | 73 | PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'` |
74 | REVISION=`echo '$Revision$' | /bin/sed -e 's/[^0-9.]//g'` | 74 | REVISION=`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 | ||
15 | print_revision() { | 15 | print_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 | ||
20 | support() { | 20 | support() { |
21 | $ECHO "@SUPPORT@" | /bin/sed -e 's/\n/ /g' | 21 | $ECHO "@SUPPORT@" | sed -e 's/\n/ /g' |
22 | } | 22 | } |
23 | 23 | ||