aboutsummaryrefslogtreecommitdiff
path: root/build-arm-tf.sh
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2015-08-07 10:33:48 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-08-25 15:23:19 +0100
commit8c6458a73aa5966bbf32ae1551fa6b13c7079449 (patch)
tree7f308ec6b091cde85631977bcf1b11e9bfcc8972 /build-arm-tf.sh
parent30b9e3f42b19b8cb5a220728574f32ec09db4b57 (diff)
arm-tf: Fix 'make clean' for fiptool
'make fiptool clean' will build the fiptool and clean the release build for FVP, which is not what we want. Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Diffstat (limited to 'build-arm-tf.sh')
-rwxr-xr-xbuild-arm-tf.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-arm-tf.sh b/build-arm-tf.sh
index 4e0384a..bacef8b 100755
--- a/build-arm-tf.sh
+++ b/build-arm-tf.sh
@@ -60,7 +60,7 @@ do_clean ()
for plat in $ARM_TF_PLATS; do
make PLAT=$plat DEBUG=$ARMTF_DEBUG_ENABLED clean
done
- make fiptool clean
+ make -C tools/fip_create clean
popd
fi
}