From ee55a7e0b6739d2f5419d2fd779e442dfad4f02e Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 24 May 2023 15:50:37 +0800 Subject: [PATCH] xfsprogs: removed unneeded make configure invocation and build inputs build log says `make: 'configure' is up to date.`, meaning that the invocation is a nop --- pkgs/tools/filesystems/xfsprogs/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/xfsprogs/default.nix b/pkgs/tools/filesystems/xfsprogs/default.nix index 8ee420fb5171..52f6101374c7 100644 --- a/pkgs/tools/filesystems/xfsprogs/default.nix +++ b/pkgs/tools/filesystems/xfsprogs/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config +{ lib, stdenv, buildPackages, fetchurl, gettext, pkg-config , icu, libuuid, readline, inih, liburcu , nixosTests }: @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { depsBuildBuild = [ buildPackages.stdenv.cc ]; nativeBuildInputs = [ - autoconf automake libtool gettext pkg-config + gettext pkg-config libuuid # codegen tool uses libuuid ]; buildInputs = [ readline icu inih liburcu ]; @@ -33,7 +33,6 @@ stdenv.mkDerivation rec { substituteInPlace "$file" \ --replace '@sbindir@' '/run/current-system/sw/bin' done - make configure patchShebangs ./install-sh '';