aboutsummaryrefslogtreecommitdiff
path: root/build-aux/yyrename
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-05-30 18:10:11 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2013-05-30 18:10:11 +0300
commitd22d5aa5d79ab2a393fa759ef9775f9bdae11a00 (patch)
tree40a048de83d4ba226499d23ed8f9b0a7b2fe4af7 /build-aux/yyrename
parent1d38d5397e97063f07e7ff84649debfdd5032ee7 (diff)
downloadgrecs-d22d5aa5d79ab2a393fa759ef9775f9bdae11a00.tar.gz
grecs-d22d5aa5d79ab2a393fa759ef9775f9bdae11a00.tar.bz2
Bugfixes
* build-aux/yyrename: Split sed command into three -e options: traditional sed doesn't like semicolons as separators. * src/opthelp.c (grecs_print_help): Remove superfluous const qualifier.
Diffstat (limited to 'build-aux/yyrename')
-rwxr-xr-xbuild-aux/yyrename2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/yyrename b/build-aux/yyrename
index db43071..6ad3b5a 100755
--- a/build-aux/yyrename
+++ b/build-aux/yyrename
@@ -93,5 +93,5 @@ eval $* || exit $?
for file in $files
do
mv $file ${file}.tmp
- sed "/^#line/b;/^# *[0-9]/b;s/yy/$pfx/g" ${file}.tmp > $file
+ sed -e '/^#line/b' -e '/^# *[0-9]/b' -e "s/yy/$pfx/g" ${file}.tmp > $file
done

Return to:

Send suggestions and report system problems to the System administrator.