blob: 813f6dc8a5502efb204d21a3431275c0991765ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
# Copyright (C) 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
TEXMFCNF=$srcdir
export TEXMFCNF
./kpsewhich --var-value=TEXMFMAIN || exit 1
./kpsewhich --expand-var=\$TEXMFMAIN || exit 1
BSTINPUTS=$srcdir/../tests/texmf \
./kpsewhich plain.bst || exit 1
AFMFONTS=$srcdir/../tests/texmf \
./kpsewhich afmtest.afm || exit 1
|