blob: 4e7159ec9d2cb7f171e33732450e82b2a5e05571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /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
TEXINPUTS=$srcdir/../tests/texmf \
./kpsewhich --all plain || exit 1
AFMFONTS=$srcdir/../tests/texmf \
./kpsewhich afmtest.afm || exit 1
BSTINPUTS=$srcdir/../tests/texmf \
./kpsewhich plain.bst || exit 1
|