summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/emacs-hyperbole-domainname.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/patches/emacs-hyperbole-domainname.patch')
-rw-r--r--gnu/packages/patches/emacs-hyperbole-domainname.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/packages/patches/emacs-hyperbole-domainname.patch b/gnu/packages/patches/emacs-hyperbole-domainname.patch
deleted file mode 100644
index cf4b63b54b..0000000000
--- a/gnu/packages/patches/emacs-hyperbole-domainname.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 17c87ac58ce6d475fa1987347fcb868ef7f75e40 Mon Sep 17 00:00:00 2001
-From: Joseph LaFreniere <joseph@lafreniere.xyz>
-Date: Sun, 2 Jun 2019 12:38:27 -0500
-Subject: [PATCH] Replace executable domainname with hostname
-
-Fixes build failure:
-> ice-9/boot-9.scm:752:25: In procedure dispatch-exception:
-> patch-el-files: unable to locate "domainname"
----
- hypb.el | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/hypb.el b/hypb.el
-index 6abc17a..0332946 100644
---- a/hypb.el
-+++ b/hypb.el
-@@ -183,8 +183,7 @@ Global keymap is used unless optional KEYMAP is given."
-
- (defun hypb:domain-name ()
- "Returns current Internet domain name with '@' prepended or nil if none."
-- (let* ((dname-cmd (or (file-exists-p "/usr/bin/domainname")
-- (file-exists-p "/bin/domainname")))
-+ (let* ((dname-cmd (file-exists-p "/bin/hostname"))
- (dname (or (and (boundp 'message-user-fqdn) (stringp message-user-fqdn)
- (string-match "\\." message-user-fqdn)
- message-user-fqdn)
---
-2.21.0
-