add missing RCS Id line to lists/xserver/md.evbmips

This commit is contained in:
rillig 2020-09-04 12:08:59 +00:00
parent 8f99095c48
commit 8bcc5e16ef
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,4 @@
# $NetBSD: md.evbmips,v 1.14 2020/09/04 12:09:00 rillig Exp $
./usr/X11R7/bin/X xserver-xorg-server-bin xorg
./usr/X11R7/bin/Xorg xserver-xorg-server-bin xorg
./usr/X11R7/bin/cvt xserver-xorg-server-bin xorg

View File

@ -1,8 +1,13 @@
#!/bin/sh
set -eu
die() {
echo "$*" 1>&2
exit 1
}
for fname; do
{ grep '^#' "$fname"
{ grep '^#' "$fname" || die "Missing comment line in $fname"
grep -v '^#' "$fname" | LC_ALL=C sort
} > "$fname.tmp"
mv "$fname.tmp" "$fname"