Fix make_generated_files.bat

This commit fixes make_generated_files.bat as it requires the user to be
inside the tf-psa-directory to invoke generate_psa_constants.py.

Signed-off-by: Harry Ramsey <harry.ramsey@arm.com>
This commit is contained in:
Harry Ramsey 2024-11-05 06:43:36 +00:00
parent 61811e6595
commit cefc67242b

View File

@ -19,7 +19,9 @@ python framework\scripts\generate_ssl_debug_helpers.py || exit /b 1
perl scripts\generate_visualc_files.pl || exit /b 1
@rem @@@@ programs\** @@@@
python tf-psa-crypto\scripts\generate_psa_constants.py || exit /b 1
cd tf-psa-crypto
python scripts\generate_psa_constants.py || exit /b 1
cd ..
@rem @@@@ tests\** @@@@
python framework\scripts\generate_bignum_tests.py --directory tf-psa-crypto\tests\suites || exit /b 1