summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2019-10-13 08:18:38 +0300
committerSergey Poznyakoff <gray@gnu.org>2019-10-13 08:18:38 +0300
commit19cdb79424d5580720444bf383a4c385f72d4052 (patch)
treedf3d703f423f24f2988fa4cb282e96b1fa115dcd
parent3760d6d6e544fe1a76a4496c4ef1068bbcc855f7 (diff)
downloadmailutils-19cdb79424d5580720444bf383a4c385f72d4052.tar.gz
mailutils-19cdb79424d5580720444bf383a4c385f72d4052.tar.bz2
Minor fixes
-rw-r--r--mh/tests/ali.at4
-rwxr-xr-xmu-aux/gencl11
2 files changed, 6 insertions, 9 deletions
diff --git a/mh/tests/ali.at b/mh/tests/ali.at
index fd5e08cdb..102d5cbd6 100644
--- a/mh/tests/ali.at
+++ b/mh/tests/ali.at
@@ -85,9 +85,9 @@ ali -a ./mh_aliases korzen | tr -d ' '
85[expout]) 85[expout])
86 86
87MH_CHECK([ali: group id],[ali05 ali-group-id ali-gid],[ 87MH_CHECK([ali: group id],[ali05 ali-group-id ali-gid],[
88cat /etc/passwd | awk -F : '/^#/ { next } $4==0 { print $1 }' > expout 88awk -F : '/^#/ { next } $4==0 { print $1 } /etc/passwd' > expout
89test -s expout || AT_SKIP_TEST 89test -s expout || AT_SKIP_TEST
90name=`awk -F : '/^#/ { next } $3==0 { print $1 }' /etc/group < /dev/null` 90name=`awk -F : '/^#/ { next } $3==0 { print $1 }' /etc/group`
91test -z "$name" && AT_SKIP_TEST 91test -z "$name" && AT_SKIP_TEST
92 92
93echo "korzen: +$name" > mh_aliases 93echo "korzen: +$name" > mh_aliases
diff --git a/mu-aux/gencl b/mu-aux/gencl
index 715b6bd0e..0419d81e0 100755
--- a/mu-aux/gencl
+++ b/mu-aux/gencl
@@ -1,7 +1,7 @@
1eval '(exit $?0)' && eval 'exec perl -wS "$0" "$@"' 1#!/bin/sh
2 & eval 'exec perl -wS "$0" $argv:q' 2#! -*-perl-*-
3eval 'exec perl -x -wS $0 ${1+"$@"}'
3 if 0; 4 if 0;
4
5# This file is part of GNU Mailutils. 5# This file is part of GNU Mailutils.
6# Copyright (C) 2017-2019 Free Software Foundation, Inc. 6# Copyright (C) 2017-2019 Free Software Foundation, Inc.
7# 7#
@@ -32,7 +32,7 @@ use Pod::Find qw(pod_where);
32 32
33my @append_files; 33my @append_files;
34my $force; 34my $force;
35my $verbose; 35my $verbose = 0;
36my $changelog_file = 'ChangeLog'; 36my $changelog_file = 'ChangeLog';
37my $since_date; 37my $since_date;
38my $until_date; 38my $until_date;
@@ -606,6 +606,3 @@ EOT
606 close $fd; 606 close $fd;
607} 607}
608 608
609# Local Variables:
610# mode: perl
611# End:

Return to:

Send suggestions and report system problems to the System administrator.