#!/bin/sh

TEXINPUTS=/usr/local/lib/tex/inputs
MFINPUTS=/usr/local/lib/mf/inputs

( cd $TEXINPUTS; chmod 666 * )
( cd $MFINPUTS; chmod 666 * )
cp ./SpecialFonts/*/texinputs/* $TEXINPUTS/.
cp ./SpecialFonts/*/mfinputs/* $MFINPUTS/.
( cd $TEXINPUTS; chmod 444 * )
( cd $MFINPUTS; chmod 444 * )

