Define FRAMEWORK

Signed-off-by: Elena Uziunaite <elena.uziunaite@arm.com>
This commit is contained in:
Elena Uziunaite 2024-11-20 16:28:01 +00:00
parent 2e37806ace
commit 8993fecae4
2 changed files with 6 additions and 3 deletions

View File

@ -10,6 +10,7 @@
# This script must be invoked from the project's root.
source framework/scripts/all-core.sh
FRAMEWORK="$PWD/framework"
source $FRAMEWORK/scripts/all-core.sh
main "$@"

View File

@ -19,10 +19,12 @@ fi
if [ -d ../include/mbedtls -a -d ../framework ]; then
# Running inside an mbedtls checkout: get the framework from mbedtls.
source ../framework/scripts/all-core.sh
FRAMEWORK="$PWD/../framework"
else
# Running standalone: use our own framework.
source framework/scripts/all-core.sh
FRAMEWORK="$PWD/framework"
fi
source $FRAMEWORK/scripts/all-core.sh
main "$@"