diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2018-10-31 00:24:04 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2018-11-15 22:42:35 -0500 |
commit | 03592a6f882f5b4309f77c3dc3e65559d7b7cb75 (patch) | |
tree | 507e5e38596c8a938c9d1c4c1183406bb675bf04 /gnu/packages/emacs.scm | |
parent | 30f0d21b407756e88cd960a9678b6af0a1ad80e9 (diff) | |
download | patches-03592a6f882f5b4309f77c3dc3e65559d7b7cb75.tar patches-03592a6f882f5b4309f77c3dc3e65559d7b7cb75.tar.gz |
gnu: emacs-realgud: Patch configure.ac to repair the build.
This fixes https://bugs.gnu.org/33196, a build problem caused by a defective
Elisp snippet in a check in configure.ac.
* gnu/packages/patches/emacs-realgud-fix-configure-ac.patch: Add patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/emacs.scm (emacs-realgud)[source]: Use it.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3e32998a9f..ce1add3915 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3659,7 +3659,11 @@ after buffer changes.") version ".tar")) (sha256 (base32 - "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24")))) + "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24")) + (patches + ;; Patch awaiting inclusion upstream (see: + ;; https://github.com/realgud/realgud/pull/226). + (search-patches "emacs-realgud-fix-configure-ac.patch")))) (build-system emacs-build-system) (arguments `(#:tests? #t |