punt on the grep and do all the file selection in find. don't try

to build kernels from files with '.' anywhere in their names.
This commit is contained in:
cgd 1996-06-15 03:45:02 +00:00
parent d73abf41aa
commit 55651c941b
2 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,9 @@
#!/bin/sh -
#
# $NetBSD: build_all,v 1.4 1996/04/12 20:27:42 cgd Exp $
# $NetBSD: build_all,v 1.5 1996/06/15 03:45:02 cgd Exp $
cflist=`cd ../conf ; find . -type f | grep -v '[a-z]' | sed -e 's,^\./,,'`
cflist=`cd ../conf ; find . -type f ! -name "*[a-z.]*" ! -name ".*" | \
sed -e 's,^\./,,'`
docmd()
{

View File

@ -1,8 +1,9 @@
#!/bin/sh -
#
# $NetBSD: rebuild_all,v 1.4 1996/04/12 20:27:44 cgd Exp $
# $NetBSD: rebuild_all,v 1.5 1996/06/15 03:45:05 cgd Exp $
cflist=`cd ../conf ; find . -type f | grep -v '[a-z]' | sed -e 's,^\./,,'`
cflist=`cd ../conf ; find . -type f ! -name "*[a-z.]*" ! -name ".*" | \
sed -e 's,^\./,,'`
docmd()
{