Skip to content
Snippets Groups Projects
Commit 971ac6f0 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Avoid trying to compose if there isn't a second thing to compose with

parent e8233d2a
No related branches found
No related tags found
1 merge request!12Fix openssl build issues
......@@ -34,6 +34,10 @@ self: super: {
# the value from the previously overlay, not from the fixed point. This is
# important because this override never converges.
python27 = super.python27.override (old: {
packageOverrides = super.lib.composeExtensions old.packageOverrides pythonTwistedOverride;
packageOverrides =
if old ? packageOverrides then
super.lib.composeExtensions old.packageOverrides pythonTwistedOverride
else
pythonTwistedOverride;
});
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment