13 lines
247 B
Bash
13 lines
247 B
Bash
|
# Workaround MSYS shell problem
|
||
|
if test -z "$out"; then
|
||
|
stdenv="$STDENV"
|
||
|
out="$OUT"
|
||
|
src="$SRC"
|
||
|
srcs="$SRCS"
|
||
|
buildInputs="$BUILDINPUTS"
|
||
|
propagatedBuildInputs="$PROPAGATEDBUILDINPUTS"
|
||
|
succeedOnFailure="$SUCCEEDONFAILURE"
|
||
|
fi
|
||
|
|
||
|
source $@
|