diff options
author | Alex Kost <alezost@gmail.com> | 2015-10-16 20:34:32 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-10-20 16:47:05 +0300 |
commit | 51805219a53311fc56e291b5762860062ef28446 (patch) | |
tree | c2cebd782b7824a4c08de343788dfdf071c23eac /emacs/guix-config.el.in | |
parent | cbe9505778088643684a8942114baa0fcf3b3339 (diff) |
build: Set DOT_USER_PROGRAM for Emacs interface.
Suggested by Ludovic Courtès <ludo@gnu.org>.
* configure.ac: Set DOT_USER_PROGRAM variable.
* emacs/guix-config.el.in (guix-config-dot-program): New constant.
* emacs/guix-external.el (guix-dot-program): Use it.
Diffstat (limited to 'emacs/guix-config.el.in')
-rw-r--r-- | emacs/guix-config.el.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/guix-config.el.in b/emacs/guix-config.el.in index 16434cecea..c7affb8c6d 100644 --- a/emacs/guix-config.el.in +++ b/emacs/guix-config.el.in @@ -1,6 +1,7 @@ ;;; guix-config.el --- Compile-time configuration of Guix. ;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org> +;; Copyright © 2015 Alex Kost <alezost@gmail.com> ;; This file is part of GNU Guix. @@ -35,6 +36,9 @@ strings of the form: Where ARGS is a list of arguments to the guile program.") +(defconst guix-config-dot-program "@DOT_USER_PROGRAM@" + "Name of the 'dot' executable defined at configure time.") + (provide 'guix-config) ;;; guix-config.el ends here |