crosstool-ng: Add configureFlag to speed up one time build

This commit is contained in:
madmaurice 2020-12-29 14:26:13 +01:00
parent db4a620b14
commit 643efa4730
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ stdenv.mkDerivation rec {
] ++ lib.optional withWget wget
++ lib.optional withCurl curl;
configureFlags = [
# "speeds up one-time build"
"--disable-dependency-tracking"
];
preConfigure = ''
export INSTALL="${coreutils}/bin/install"
export GREP="${gnugrep}/bin/grep"