fixup patch to not trace

This commit is contained in:
Graham Christensen 2018-02-09 19:31:11 -05:00
parent 666596b251
commit c51f5fed7f
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
3 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@ index e974c8f..0094e27 100644
+ includedFileAbsolutePaths;
+
+ in builtins.filterSource (possiblePath: _type:
+ builtins.trace "${possiblePath}" ((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
+ ((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
+ )
+ src;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);

View file

@ -32,7 +32,7 @@ let kernel = buildPlatform.parsed.kernel.name;
includedFileAbsolutePaths;
in builtins.filterSource (possiblePath: _type:
builtins.trace "${possiblePath}" ((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
)
src;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);

View file

@ -32,7 +32,7 @@ let kernel = buildPlatform.parsed.kernel.name;
includedFileAbsolutePaths;
in builtins.filterSource (possiblePath: _type:
builtins.trace "${possiblePath}" ((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
((checkExactMatch possiblePath) || (checkPrefixMatch possiblePath))
)
src;
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);