diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-08-29 15:01:18 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-08-29 15:01:18 +0000 |
commit | 11e92875ae7dd291e36dc09dd19d824930cae2fc (patch) | |
tree | ceb9a3efee186fb0c694434b112c80ea20f8147e /distrib/mvme88k/miniroot | |
parent | 6f3175afa858bcf9a71aab3d93a369ea346e4bba (diff) |
Apply recent changes in the i386 comment eradication code to all
architectures using a list2sh.awk and related 'list' files (alpha,
hp300, mac68k, mvme68k, mvme88k, mvmeppc, powerpc and vax).
list2sh.awk is modified so that in handling SPECIAL lines the tabs in
regular expressions are not lost to awk field parsing.
Any 'list' file trying to eliminate comments, using SPECIAL lines and
sed, now eliminates lines that
a) have '#' as the first non-blank, non-tab character, with at least
one blank or tab following the '#'.
b) have '#' as the first non-blank, non-tab character, with a newline
immediately following the '#'.
Previous b) was not being done, and only leading/following blanks were
being looked for due to the loss of tab characters in list2sh.awk.
Diffstat (limited to 'distrib/mvme88k/miniroot')
-rw-r--r-- | distrib/mvme88k/miniroot/list | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/mvme88k/miniroot/list b/distrib/mvme88k/miniroot/list index 1d41f3dd1a5..72d5da6deef 100644 --- a/distrib/mvme88k/miniroot/list +++ b/distrib/mvme88k/miniroot/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.3 2001/06/23 19:44:48 deraadt Exp $ +# $OpenBSD: list,v 1.4 2001/08/29 15:01:17 krw Exp $ # $NetBSD: list,v 1.2.4.2 1996/06/26 19:25:00 pk Exp $ # Amiga extra's @@ -39,4 +39,4 @@ SYMLINK /tmp/hosts etc/hosts # and the installation tools COPY ${ARCHDIR}/dot.profile .profile -SPECIAL sed -e '/^#[ ].*$/d' -e "s/^ARCH=ARCH$/ARCH=`arch`" < ${ARCHDIR}/../install.md > install.md +SPECIAL sed -e '/^[ ]*#[ ].*$/d' -e '/^[ ]*#$/d' -e "s/^ARCH=ARCH$/ARCH=`arch`" < ${ARCHDIR}/../install.md > install.md |