mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-27 06:25:23 +00:00
fix autoreconfHook
This commit is contained in:
parent
8a1b8a5b0a
commit
dfb2f61519
@ -269,7 +269,7 @@ let
|
||||
autonix = import ../build-support/autonix { inherit pkgs; };
|
||||
|
||||
autoreconfHook = makeSetupHook
|
||||
{ substitutions = { inherit autoconf automake libtool gettext; }; }
|
||||
{ substitutions = { inherit autoconf automake gettext; libtool = realLibtool; }; }
|
||||
../build-support/setup-hooks/autoreconf.sh;
|
||||
|
||||
buildEnv = callPackage ../build-support/buildenv {};
|
||||
@ -5564,7 +5564,9 @@ let
|
||||
|
||||
libtool = if stdenv.isDarwin
|
||||
then darwin.cctools
|
||||
else libtool_2;
|
||||
else realLibtool;
|
||||
|
||||
realLibtool = libtool_2;
|
||||
|
||||
libtool_1_5 = callPackage ../development/tools/misc/libtool { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user