about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-10-21 00:20:09 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-10-25 20:34:51 +0200
commit635d49e973522b8af5fc4c606940307c1c58fe8c (patch)
tree2cf43e871b140163d05a14c6dcd4f0e5237e342a /pkgs/applications/editors
parent8b61f1f3673b56089c88bfe8490feb93064dae44 (diff)
downloadnixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar.gz
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar.bz2
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar.lz
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar.xz
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.tar.zst
nixlib-635d49e973522b8af5fc4c606940307c1c58fe8c.zip
Emacs: remove --with-crt-dir (no longer supported)
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-24/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix
index ce7a71f479d3..8f954515b8f2 100644
--- a/pkgs/applications/editors/emacs-24/default.nix
+++ b/pkgs/applications/editors/emacs-24/default.nix
@@ -35,10 +35,7 @@ stdenv.mkDerivation rec {
         [ "--with-x-toolkit=lucid" "--with-xft" ]
       else
         [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no"
-          "--with-gif=no" "--with-tiff=no" ] ) )
-    # On NixOS, help Emacs find `crt*.o'.
-    ++ stdenv.lib.optional (stdenv ? glibc)
-         [ "--with-crt-dir=${stdenv.glibc}/lib" ];
+          "--with-gif=no" "--with-tiff=no" ] ) );
 
   NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX)
     "-I${cairo}/include/cairo";