externals argumental are now taking precedence over the result of

moduleMerge because we may need to alter the result of the configuration
before using it inside other options.

svn path=/nixpkgs/trunk/; revision=17477
This commit is contained in:
Nicolas Pierron 2009-09-28 18:22:24 +00:00
parent e6399964cb
commit fad1b41fe4

View File

@ -280,7 +280,7 @@ rec {
let module = { inherit (result) options config; }; in
moduleMerge "" (
moduleClosure initModules (args // module)
moduleClosure initModules (module // args)
)
);