aboutsummaryrefslogtreecommitdiff
path: root/japanese/ptex/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/ptex/pkg-install')
-rw-r--r--japanese/ptex/pkg-install14
1 files changed, 0 insertions, 14 deletions
diff --git a/japanese/ptex/pkg-install b/japanese/ptex/pkg-install
deleted file mode 100644
index 3c64b806ae06..000000000000
--- a/japanese/ptex/pkg-install
+++ /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" != "PRE-INSTALL" ]; then
- exit;
-fi
-
-for f in ${files}; do
- if [ -f $f ]; then
- mv $f $f.old
- fi
- done