about summary refs log tree commit diff
path: root/pkgs/build-support/emacs
diff options
context:
space:
mode:
authorDwarfMaster <luc@dwarfmaster.net>2020-06-02 11:50:36 +0200
committerDwarfMaster <luc@dwarfmaster.net>2020-06-02 11:52:39 +0200
commita9eab6d2b96288a705ceca61de5a632c37576f5c (patch)
treea3e9ac744b67d703b801e698228321fb01210a40 /pkgs/build-support/emacs
parent3b2c06909ea24573023a0cef192ab6b4d2936288 (diff)
Fix building of emacsWithPackages not findind subdirs.el
Diffstat (limited to 'pkgs/build-support/emacs')
-rw-r--r--pkgs/build-support/emacs/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix
index 25f068cd3fa08..1f2fbd8068e7b 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
   ''