blob: c432da27777ab429de6c34a0049a02ade5850f0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# Preserve files installed by ptex-common, or other package/application.
#
files="${PKG_PREFIX}/bin/pltotf ${PKG_PREFIX}/bin/tftopl ${PKG_PREFIX}/share/texmf/web2c/texmf.cnf ${PKG_PREFIX}/share/texmf/ls-R"
if [ "$2" != "POST-DEINSTALL" ]; then
exit;
fi
for f in ${files}; do
if [ -f $f.old ]; then
mv $f.old $f
fi
done
|