diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-17 03:58:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-04-17 03:58:56 +0000 |
commit | e886d2ed5f458a1c669b7e01332cb294ae4cbdeb (patch) | |
tree | c2b4570421724d0f1f9b22228287ea4c64f5cb11 /distrib/sets | |
parent | f4409ec46343690f2d8488e54a5731d75ae3a918 (diff) |
For SHA256 hashes to be ready to go onto the install media, we must
build the sets before we build the media. While there we can get rid
of DESTDIR/snapshot too, and simply install straight into RELEASEDIR.
(This also ends up saving an astounding amount of traffic/latency in a nfs
environment)
Diffstat (limited to 'distrib/sets')
-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 937f3b862bb..60ca1a17fe4 100644 --- a/distrib/sets/checkflist +++ b/distrib/sets/checkflist @@ -1,5 +1,5 @@ #!/bin/sh -x -# $OpenBSD: checkflist,v 1.10 2003/12/11 00:13:27 deraadt Exp $ +# $OpenBSD: checkflist,v 1.11 2009/04/17 03:58:54 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 -e '^\./snapshot' -e '^.$' | sort -H | diff $TMP - + grep -v -e '^.$' | sort -H | diff $TMP - |