blob: 5d71efe129cadd18d0bc3c2c687d05af7245d828 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2009 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
TEXMFCNF=$srcdir/../kpathsea \
WEBINPUTS=$srcdir/tiedir \
./tie -c tie.outc tie.tie tie.cf1 tie.cf2 tie.cf3 || exit 1
diff tie.outc $srcdir/tiedir/tie.chf.gen || exit 1
TEXMFCNF=$srcdir/../kpathsea \
WEBINPUTS=$srcdir/tiedir \
./tie -m tie.outm tie.tie tie.cf1 tie.cf2 tie.cf3 || exit 1
diff tie.outm $srcdir/tiedir/tie.master.gen || exit 1
|