autoconf264: fix depends for strictDeps = true
Without the change `config.strictDepsByDefault = true` fails build as: checking for GNU M4 that supports accurate traces... configure: error: no acceptable m4 could be found in $PATH.
This commit is contained in:
parent
0105d57371
commit
9b42f641b8
1 changed files with 3 additions and 1 deletions
|
@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0j3jdjpf5ly39dlp0bg70h72nzqr059k0x8iqxvaxf106chpgn9j";
|
||||
};
|
||||
|
||||
buildInputs = [ m4 perl ];
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = [ m4 perl ];
|
||||
buildInputs = [ m4 ];
|
||||
|
||||
# Work around a known issue in Cygwin. See
|
||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
|
||||
|
|
Loading…
Reference in a new issue