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:
parent
d73abf41aa
commit
55651c941b
@ -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()
|
||||
{
|
||||
|
@ -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()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user