summaryrefslogtreecommitdiff
path: root/print/tex/scripts/configure
blob: d4d90c14bc7c7da2464b49d766db8b16bf5e408b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

if [ $# != 3 ]; then exit 1; fi

#
# The subdirectory searching in kpathsearch sometimes  fails (don't know why)
# so let's disable the feature (It can be reenabled with the proper environment
# variables though.
#
cd $3/kpathsea || exit 1;
mv paths.h.in paths.h.in.orig || exit 1;
sed -e s://:/: <paths.h.in.orig >paths.h.in || exit 1;

exit 0;