forked from Telodendria/Telodendria
Fix the Makefile by sourcing tools/env.sh if TELODENDRIA_ENV is unset.
This commit is contained in:
parent
abbbfe4d7f
commit
f1f66c6331
2 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,10 @@
|
|||
# handle building the code, it also handles formatting it, as well
|
||||
# as generating patch files.
|
||||
|
||||
if [ -z "$TELODENDRIA_ENV" ]; then
|
||||
. tools/env.sh
|
||||
fi
|
||||
|
||||
#
|
||||
# Set variables
|
||||
#
|
||||
|
|
|
@ -39,3 +39,6 @@ if [ "$(uname)" = "OpenBSD" ]; then
|
|||
# flags.
|
||||
export MALLOC_OPTIONS="CFGJSU"
|
||||
fi
|
||||
|
||||
export TELODENDRIA_ENV=1
|
||||
|
||||
|
|
Loading…
Reference in a new issue