Commit 4c37cc61 authored by Łukasz Nowak's avatar Łukasz Nowak

component/firewalld: Strictly enforce make's PYTHON value

In some contexts (like package building) the top-make is called like:

  make -C slapos build PYTHON=/usr/bin/python2.7

And the value somehow poisons child make of this component, that even
overriding it with environment is not enough, thus strictly enforce it
during build of this component.
parent 47e7c362
...@@ -71,6 +71,9 @@ configure-options = ...@@ -71,6 +71,9 @@ configure-options =
--disable-static --disable-static
--with-python=${buildout:executable} --with-python=${buildout:executable}
make-options =
PYTHON=${buildout:executable}
environment = environment =
PATH=${pkgconfig:location}/bin:${gettext:location}/bin:${glib:location}/bin:${xz-utils:location}/bin:${flex:location}/bin:${bison:location}/bin:%(PATH)s PATH=${pkgconfig:location}/bin:${gettext:location}/bin:${glib:location}/bin:${xz-utils:location}/bin:${flex:location}/bin:${bison:location}/bin:%(PATH)s
PKG_CONFIG_PATH=${glib:location}/lib/pkgconfig:${pcre:location}/lib/pkgconfig PKG_CONFIG_PATH=${glib:location}/lib/pkgconfig:${pcre:location}/lib/pkgconfig
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment