3
0
Fork 0
forked from mirrors/nixpkgs

Merge #1633: --enable-symlinks in ncurses and e2fsprogs

This commit is contained in:
Vladimír Čunát 2014-02-27 08:28:35 +01:00
parent 457fdb3842
commit 267d0a5ab6
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation (rec {
patches = [ ./patch-ac ];
configureFlags = ''
--with-shared --without-debug --enable-pc-files
--with-shared --without-debug --enable-pc-files --enable-symlinks
${if unicode then "--enable-widec" else ""}${if cxx then "" else "--without-cxx-binding"}
'';

View file

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
};
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck";
configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck --enable-symlink-install";
enableParallelBuilding = true;