about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-01-27T02·11+0000
committerVincent Ambo <tazjin@google.com>2020-01-27T02·11+0000
commitdba2e5426e8951bcd22a28f28e7bb4493ee9eda8 (patch)
tree164b91c53f02dc92c979cbb3b27ae08636c582d8 /tools
parent253a166bbc15e316ba99b7a202c3ed501d6d2c58 (diff)
fix(emacs-pkgs/nix-util): Don't leave sly build out-links around r/467
Diffstat (limited to 'tools')
-rw-r--r--tools/emacs-pkgs/nix-util/nix-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/emacs-pkgs/nix-util/nix-util.el b/tools/emacs-pkgs/nix-util/nix-util.el
index 8d1c0610ab..4b9dd31a02 100644
--- a/tools/emacs-pkgs/nix-util/nix-util.el
+++ b/tools/emacs-pkgs/nix-util/nix-util.el
@@ -79,7 +79,7 @@
          (errbuf (get-buffer-create (format "*depot-errors/%s*" attribute)))
          (expression (format "let depot = import <depot> {}; in depot.nix.buildLisp.sbclWith [ depot.%s ]" attribute))
          ;; TODO(tazjin): use <depot>
-         (command (list "nix-build" "-I" (format "depot=%s" nix-depot-path) "-E" expression)))
+         (command (list "nix-build" "--no-out-link" "-I" (format "depot=%s" nix-depot-path) "-E" expression)))
 
     (message "Acquiring Lisp for <depot>.%s" attribute)
     (make-process :name (format "depot-nix-build/%s" attribute)