summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/cask/files/cask-bin-launcher-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emacs/cask/files/cask-bin-launcher-fix.patch b/app-emacs/cask/files/cask-bin-launcher-fix.patch
deleted file mode 100644
index 704d284a13dc..000000000000
--- a/app-emacs/cask/files/cask-bin-launcher-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/bin/cask b/bin/cask
-index 55d4d86..37a5c9c 100755
---- a/bin/cask
-+++ b/bin/cask
-@@ -39,17 +39,7 @@ case $subcommand in
- *)
- WHICH=${WHICH:-which}
- READLINK=$($WHICH readlink || true)
-- if [ "$(uname || true)" == "Darwin" ] ; then
-- READLINK=
-- fi
-- READLINK=${READLINK:-$($WHICH greadlink || true)}
-- if [ ! -z "$READLINK" ] ; then
-- SRCDIR__=$($READLINK -f "$CASK")
-- else
-- SRCDIR__=$(python -c "import os, sys; print(os.path.realpath(sys.argv[1]))" "$CASK")
-- fi
-- SRCDIR_=$(dirname "$SRCDIR__")
-- SRCDIR=$(dirname "$SRCDIR_")
-- "$EMACS" -Q --script "$SRCDIR/cask-cli.el" -- $subcommand "$@"
-+ SRCDIR="@SITELISP@"
-+ "$EMACS" -q --script "$SRCDIR/cask-cli.el" -- $subcommand "$@"
- ;;
- esac