summaryrefslogtreecommitdiff
path: root/japanese/ptex/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/ptex/pkg-deinstall')
-rw-r--r--japanese/ptex/pkg-deinstall14
1 files changed, 0 insertions, 14 deletions
diff --git a/japanese/ptex/pkg-deinstall b/japanese/ptex/pkg-deinstall
deleted file mode 100644
index c432da27777a..000000000000
--- a/japanese/ptex/pkg-deinstall
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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