Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sets Ignore lines starting with a ``#'' in the set l...



details:   https://anonhg.NetBSD.org/src/rev/d71bc0200679
branches:  trunk
changeset: 472035:d71bc0200679
user:      simonb <simonb%NetBSD.org@localhost>
date:      Mon Apr 19 02:33:40 1999 +0000

description:
Ignore lines starting with a ``#'' in the set list files.

diffstat:

 distrib/sets/makeflist |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (17 lines):

diff -r 7bcfd3838881 -r d71bc0200679 distrib/sets/makeflist
--- a/distrib/sets/makeflist    Mon Apr 19 02:26:11 1999 +0000
+++ b/distrib/sets/makeflist    Mon Apr 19 02:33:40 1999 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: makeflist,v 1.15 1999/03/29 01:20:42 simonb Exp $
+# $NetBSD: makeflist,v 1.16 1999/04/19 02:33:40 simonb Exp $
 #
 # Print out the files in some or all lists.
 # Usage: makeflist [-b] [-x] [-a arch] [-m machine] [-s setsdir] [setname ...]
@@ -94,4 +94,4 @@
        if [ $setname = misc ]; then
                grep -v ${machine} $setd/lists/man/md_share
        fi
-done | sort -u
+done | egrep -v '^#' | sort -u



Home | Main Index | Thread Index | Old Index