mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-26 10:30:32 +00:00
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
This commit is contained in:
@@ -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
|
||||
'';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user