From bbbebaf380461a81684d0ba83d794f8a4219fda3 Mon Sep 17 00:00:00 2001 From: Alois Wohlschlager Date: Sat, 16 Nov 2024 20:14:39 +0100 Subject: [PATCH] fix build with latest Lix Commit 8088927b90ff84dd37c342e1ef0a91bc8feca6ec renamed initGC to initLibExpr. Use the new name so that the build works again. --- src/nix-eval-jobs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix-eval-jobs.cc b/src/nix-eval-jobs.cc index bd7c207..2b4885e 100644 --- a/src/nix-eval-jobs.cc +++ b/src/nix-eval-jobs.cc @@ -344,7 +344,7 @@ int main(int argc, char **argv) { return handleExceptions(argv[0], [&]() { initNix(); - initGC(); + initLibExpr(); myArgs.parseArgs(argv, argc);