build-tfa.sh: Pass DEBUG param to make
From job's params.
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: Icf349ce455dc9f093d6089f91211789eda20c9d8
diff --git a/eclair/build-tfa.sh b/eclair/build-tfa.sh
index 88c9dd1..cdabead 100755
--- a/eclair/build-tfa.sh
+++ b/eclair/build-tfa.sh
@@ -10,9 +10,9 @@
env
cd ${WORKSPACE}/trusted-firmware-a
-make clean
+make clean DEBUG=${DEBUG}
# Replace '$(PWD)' with the *current* $PWD.
MAKE_TARGET=$(echo "${MAKE_TARGET}" | sed "s|\$(PWD)|$PWD|")
-make ${MAKE_TARGET} -j3 $(cat ${WORKSPACE}/tf-a-ci-scripts/tf_config/$1)
+make ${MAKE_TARGET} -j3 $(cat ${WORKSPACE}/tf-a-ci-scripts/tf_config/$1) DEBUG=${DEBUG}