diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-11 00:13:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-11 00:13:28 +0000 |
commit | caa748d9455530a59419f598a565994b43075b45 (patch) | |
tree | c42750140842d0dd008f36d6277ab301d479ce29 /distrib | |
parent | 7fd6d1ed7ac6c101aa009739a5232dde6670b9bd (diff) |
do not whine about .
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sets/checkflist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sets/checkflist b/distrib/sets/checkflist index d98a6125511..937f3b862bb 100644 --- a/distrib/sets/checkflist +++ b/distrib/sets/checkflist @@ -1,5 +1,5 @@ #!/bin/sh -x -# $OpenBSD: checkflist,v 1.9 2003/12/06 19:58:18 deraadt Exp $ +# $OpenBSD: checkflist,v 1.10 2003/12/11 00:13:27 deraadt Exp $ # # Copyright (c) 2001 Theo de Raadt # All rights reserved. @@ -34,4 +34,4 @@ trap 'rm -f $TMP' 0 1 15 sh makeflist > $TMP ( cd $DESTDIR ; find . \( -type d -o -type f -o -type l \) ) | \ - grep -v '^\./snapshot' | sort -H | diff $TMP - + grep -v -e '^\./snapshot' -e '^.$' | sort -H | diff $TMP - |