Commit c71ddf1a authored by Łukasz Nowak's avatar Łukasz Nowak

Export environment for shell.

parent de04b895
......@@ -72,12 +72,12 @@ output = ${buildout:directory}/environment.cfg
# Section exposes SlapOS default environment as sh file.
recipe = collective.recipe.template
input = inline:
PATH="${environment:PATH}"
CFLAGS="${environment:CFLAGS}"
CPPFLAGS="${environment:CPPFLAGS}"
LDFLAGS="${environment:LDFLAGS}"
PKG_CONFIG_PATH="${environment:PKG_CONFIG_PATH}"
LD_LIBRARY_PATH="${environment:LD_LIBRARY_PATH}"
export PATH="${environment:PATH}"
export CFLAGS="${environment:CFLAGS}"
export CPPFLAGS="${environment:CPPFLAGS}"
export LDFLAGS="${environment:LDFLAGS}"
export PKG_CONFIG_PATH="${environment:PKG_CONFIG_PATH}"
export LD_LIBRARY_PATH="${environment:LD_LIBRARY_PATH}"
output = ${buildout:directory}/environment.sh
[lxml-python]
......
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