summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-12-29 21:37:29 +0000
committerUlrich Müller <ulm@gentoo.org>2011-12-29 21:37:29 +0000
commit7968d66e09ff4a8239a45843511a49c9f168683b (patch)
tree9b6edc8b80841e62d6857922a9dc32eae1aec8b9 /app-misc/editor-wrapper/files
parentDrop ppc/ppc64; bug #379893 (diff)
downloadhistorical-7968d66e09ff4a8239a45843511a49c9f168683b.tar.gz
historical-7968d66e09ff4a8239a45843511a49c9f168683b.tar.bz2
historical-7968d66e09ff4a8239a45843511a49c9f168683b.zip
Remove old. Drop backwards compatibility symlink.
Package-Manager: portage-2.1.10.44/cvs/Linux x86_64
Diffstat (limited to 'app-misc/editor-wrapper/files')
-rw-r--r--app-misc/editor-wrapper/files/editor-wrapper-2.sh17
-rw-r--r--app-misc/editor-wrapper/files/editor-wrapper-3.sh17
2 files changed, 0 insertions, 34 deletions
diff --git a/app-misc/editor-wrapper/files/editor-wrapper-2.sh b/app-misc/editor-wrapper/files/editor-wrapper-2.sh
deleted file mode 100644
index dc8e065e0f29..000000000000
--- a/app-misc/editor-wrapper/files/editor-wrapper-2.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# Copyright 2009-2011 Gentoo Foundation
-# Distributed under the terms of the MIT/X11 license
-
-# Editor wrapper script, executes ${EDITOR} with arguments $@
-
-if [ -z "${EDITOR}" ]; then
- # Try to get EDITOR from system profile
- EDITOR=$(. /etc/profile &>/dev/null; echo "${EDITOR}")
-fi
-
-if [ -z "${EDITOR}" ]; then
- echo "$0: The EDITOR variable must be set" >&2
- exit 1
-fi
-
-exec ${EDITOR} "$@"
diff --git a/app-misc/editor-wrapper/files/editor-wrapper-3.sh b/app-misc/editor-wrapper/files/editor-wrapper-3.sh
deleted file mode 100644
index 34520ffef78a..000000000000
--- a/app-misc/editor-wrapper/files/editor-wrapper-3.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# Copyright 2009-2011 Gentoo Foundation
-# Distributed under the terms of the MIT/X11 license
-
-# Wrapper script, executes ${@VAR@} with arguments $@
-
-if [ -z "${@VAR@}" ]; then
- # Try to get @VAR@ from system profile
- @VAR@=$(. /etc/profile &>/dev/null; echo "${@VAR@}")
-fi
-
-if [ -z "${@VAR@}" ]; then
- echo "$0: The @VAR@ variable must be set" >&2
- exit 1
-fi
-
-exec ${@VAR@} "$@"