erofs-utils: set explicit MAX_BLOCK_SIZE
eliminates an impurity through sysconf(_SC_PAGESIZE) when the setting is not specified
This commit is contained in:
parent
54adff2f84
commit
5893e60936
@ -25,7 +25,9 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ util-linux lz4 zlib ]
|
||||
++ lib.optionals fuseSupport [ fuse ];
|
||||
|
||||
configureFlags = lib.optionals fuseSupport [ "--enable-fuse" ];
|
||||
configureFlags = [
|
||||
"MAX_BLOCK_SIZE=4096"
|
||||
] ++ lib.optional fuseSupport "--enable-fuse";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Userspace utilities for linux-erofs file system";
|
||||
|
Loading…
Reference in New Issue
Block a user