diff --git a/scripts/doxygen.sh b/scripts/doxygen.sh index b6a1d4594..07c08f673 100755 --- a/scripts/doxygen.sh +++ b/scripts/doxygen.sh @@ -13,7 +13,7 @@ if [ -d library -a -d include -a -d tests ]; then :; else exit 1 fi -if scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else +if ./framework/scripts/apidoc_full.sh > doc.out 2>doc.err; then :; else cat doc.err echo "FAIL" >&2 exit 1; diff --git a/scripts/recursion.pl b/scripts/recursion.pl index 3cdeff7f4..379710ff8 100755 --- a/scripts/recursion.pl +++ b/scripts/recursion.pl @@ -6,7 +6,7 @@ # When the recursion depth might depend on data controlled by the attacker in # an unbounded way, those functions should use iteration instead. # -# Typical usage: scripts/recursion.pl library/*.c +# Typical usage: framework/scripts/recursion.pl library/*.c # # Copyright The Mbed TLS Contributors # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later