Hello.
I wrote an ebuild and it executes a small Python script bundled in the source. The Python script requires a environment variable to be set.
NAME=value ${ECONF_SOURCE:-.}/script_file.py
and
export NAME=value
${ECONF_SOURCE:-.}/script_file.py
but the both fail to pass the parameter via the environment variable to the script.
How can I do it? Please point it out if I overlooked something.