From 6c7796f63b5ecb68224fa4cf523b30d88a4b5a9b Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Tue, 10 Dec 2024 16:46:56 +0100 Subject: [PATCH] scripts: fix paths in files moved from Mbed TLS Signed-off-by: Valerio Setti --- scripts/doxygen.sh | 2 +- scripts/recursion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/doxygen.sh b/scripts/doxygen.sh index b6a1d45949..07c08f6730 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 3cdeff7f43..379710ff86 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