blob: 6f065f0f3286c8f339b98e20a93acae471710dc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2010-2013 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
TEXMFCNF=$srcdir
export TEXMFCNF
./kpsewhich --var-value=TEXMFCNF || exit 1 # environment variable
./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
|