Merge pull request #61872 from transumption/201905/fix-e2fsprogs-cross
e2fsprogs: fix cross compilation
This commit is contained in:
commit
e775638efd
@ -27,9 +27,15 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags =
|
||||
if stdenv.isLinux then [
|
||||
"--enable-elf-shlibs" "--enable-symlink-install" "--enable-relative-symlinks"
|
||||
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
||||
"--disable-libuuid" "--disable-uuidd" "--disable-libblkid" "--disable-fsck"
|
||||
"--enable-elf-shlibs"
|
||||
"--enable-symlink-install"
|
||||
"--enable-relative-symlinks"
|
||||
"--with-crond-dir=no"
|
||||
# fsck, libblkid, libuuid and uuidd are in util-linux-ng (the "libuuid" dependency)
|
||||
"--disable-fsck"
|
||||
"--disable-libblkid"
|
||||
"--disable-libuuid"
|
||||
"--disable-uuidd"
|
||||
] else [
|
||||
"--enable-libuuid --disable-e2initrd-helper"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user