blob: a7835a036213e3ccddaf6dd9e297a14ef5d3ee0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# $OpenBSD: makeflist,v 1.2 2014/05/03 15:18:26 todd Exp $
arch=$MACHINE
listsdir=`pwd`/lists
lists=`sh ./genlists $arch`
for setname in $lists
do
sh ./gensetlist $setname
done | sort
|