From 34f0d2e608d00500094dfc5e2978c972aeff30fc Mon Sep 17 00:00:00 2001 From: Appelmans Date: Fri, 26 May 2023 15:48:10 -0700 Subject: [PATCH] Fixed file location --- codebuild/bin/test_dynamic_load.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codebuild/bin/test_dynamic_load.sh b/codebuild/bin/test_dynamic_load.sh index 91ff54a3edd..1e7bdffa367 100755 --- a/codebuild/bin/test_dynamic_load.sh +++ b/codebuild/bin/test_dynamic_load.sh @@ -31,7 +31,7 @@ if [ ! -d $WORK_DIR/s2n-install-shared ]; then fi # Compile the dynamic load test without linking to libs2n.so -gcc -o s2n_dynamic_load_test s2n_dynamic_load_test.c -ldl -lpthread -L$WORK_DIR/s2n-install-shared/lib -ls2n +gcc -o s2n_dynamic_load_test codebuild/bin/s2n_dynamic_load_test.c -ldl -lpthread -L$WORK_DIR/s2n-install-shared/lib -ls2n LDD_OUTPUT=$(ldd s2n_dynamic_load_test)