summaryrefslogtreecommitdiff
path: root/Build/source/texk/gsftopk/mksedscript
blob: 0c81636457bb0c78b46418540e36efa9c1994704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
KPATHSEA=''

while test $# -gt 0
do
	case $1 in
	-DKPATHSEA)		KPATHSEA=y;;
	esac
	shift
done

if test -z "$KPATHSEA"
then
	echo	'/^#ifkpathsea/,/^#/d'
else
	echo	'/^#ifnokpathsea/,/^#/d'
	echo	's/TEXFONTS/TFMFONTS/g'
fi

echo '/^#/d'

exit 0