3
0
Fork 0
forked from mirrors/nixpkgs

nodejs: put back a comment about closure size

This commit is contained in:
Vladimír Čunát 2016-11-02 17:49:19 +01:00
parent a5dad8aeeb
commit 7f805a60d8

View file

@ -16,6 +16,10 @@ let
sharedConfigureFlags = concatMap (name: [
"--shared-${name}"
"--shared-${name}-libpath=${getLib sharedLibDeps.${name}}/lib"
/** Closure notes: we explicitly avoid specifying --shared-*-includes,
* as that would put the paths into bin/nodejs.
* Including pkgconfig in build inputs would also have the same effect!
*/
]) (builtins.attrNames sharedLibDeps);
extraConfigFlags = optionals (!enableNpm) [ "--without-npm" ];