mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-21 15:37:57 +00:00
Documentation improvements
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
8bfe15f291
commit
4fa948feb7
|
@ -275,7 +275,9 @@ Tool path options:
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
# remove built files as well as the cmake cache/config
|
# Cleanup before/after running a component.
|
||||||
|
# Remove built files as well as the cmake cache/config.
|
||||||
|
# Does not remove generated source files.
|
||||||
cleanup()
|
cleanup()
|
||||||
{
|
{
|
||||||
command make clean
|
command make clean
|
||||||
|
@ -300,6 +302,8 @@ cleanup()
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Final cleanup when this script exits (except when exiting on a failure
|
||||||
|
# in non-keep-going mode).
|
||||||
final_cleanup () {
|
final_cleanup () {
|
||||||
cleanup
|
cleanup
|
||||||
|
|
||||||
|
@ -437,11 +441,14 @@ pre_parse_command_line () {
|
||||||
COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS *_armcc*"
|
COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS *_armcc*"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Error out if an explicitly requested component doesn't exist.
|
||||||
if [ $all_except -eq 0 ]; then
|
if [ $all_except -eq 0 ]; then
|
||||||
unsupported=0
|
unsupported=0
|
||||||
set -f
|
set -f
|
||||||
for component in $COMMAND_LINE_COMPONENTS; do
|
for component in $COMMAND_LINE_COMPONENTS; do
|
||||||
set +f
|
set +f
|
||||||
|
# If the requested name includes a wildcard character, don't
|
||||||
|
# check it. Accept wildcard patterns that don't match anything.
|
||||||
case $component in
|
case $component in
|
||||||
*[*?\[]*) continue;;
|
*[*?\[]*) continue;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue