14 lines
233 B
Bash
14 lines
233 B
Bash
#!/bin/sh
|
|
# $OpenBSD: gensetlist,v 1.3 2014/05/03 15:18:26 todd Exp $
|
|
|
|
arch=$MACHINE
|
|
listsdir=`pwd`/lists
|
|
|
|
setname=$1
|
|
|
|
if [ "$setname" = "xfont" ]; then
|
|
arch=x11r7
|
|
fi
|
|
|
|
cat $listsdir/$setname/mi $listsdir/$setname/md.${arch}
|