summaryrefslogtreecommitdiff
path: root/java/eclipse-pydev/files/pkg-install.in
diff options
context:
space:
mode:
Diffstat (limited to 'java/eclipse-pydev/files/pkg-install.in')
-rw-r--r--java/eclipse-pydev/files/pkg-install.in25
1 files changed, 0 insertions, 25 deletions
diff --git a/java/eclipse-pydev/files/pkg-install.in b/java/eclipse-pydev/files/pkg-install.in
deleted file mode 100644
index 3c5c2d73b759..000000000000
--- a/java/eclipse-pydev/files/pkg-install.in
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-if [ $# -ne 2 ]; then
- echo "usage: $0 distname { POST-INSTALL }" >&2
- exit 1
-fi
-
-PATH="/bin:/sbin:/usr/bin:/usr/sbin"
-
-BUNDLES_INFO=%%BUNDLES_INFO%%
-PLUGINDIR=%%PLUGINDIR%%
-PREFIX=%%PREFIX%%
-
-if [ "$2" = "POST-INSTALL" ]; then
- echo "===> Updating ${BUNDLES_INFO}"
- for d in $(ls -1 ${PREFIX}/${PLUGINDIR})
- do
- (echo "${d},../../${PLUGINDIR}/${d}/,4,false" | \
- sed -e 's/_\([0-9]\)/,\1/1' -e '/templates/d') >> ${BUNDLES_INFO}
- done
- sort ${BUNDLES_INFO} > ${BUNDLES_INFO}.sort && \
- mv ${BUNDLES_INFO}.sort ${BUNDLES_INFO}
-fi
-
-exit 0