From a9eab6d2b96288a705ceca61de5a632c37576f5c Mon Sep 17 00:00:00 2001 From: DwarfMaster Date: Tue, 2 Jun 2020 11:50:36 +0200 Subject: [PATCH] Fix building of emacsWithPackages not findind subdirs.el --- pkgs/build-support/emacs/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 25f068cd3fa0..1f2fbd8068e7 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -174,7 +174,7 @@ runCommand mkdir -p $out/share # Link icons and desktop files into place - for dir in applications icons info man; do + for dir in applications icons info man emacs; do ln -s $emacs/share/$dir $out/share/$dir done ''