blob: 418ffc57acc7e20df41e5d94c6b90fe24c1a43cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# $OpenBSD: gensetlist,v 1.2 2006/11/29 16:36:46 matthieu Exp $
arch=$MACHINE
listsdir=`pwd`/lists
setname=$1
Release=$2
if [ "$setname" = "xfont" ]; then
arch=x11r7
fi
cat $listsdir/$setname/mi $listsdir/$setname/md.${arch}
|