From 630c5ebc0e006ec01b363f78cfe050065b46bc4c Mon Sep 17 00:00:00 2001 From: Catena cyber <35799796+catenacyber@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:21:34 +0100 Subject: [PATCH] ngolo-fuzzing: fix build by using python3 (#8916) Was this the only project where this happened ? Meant to fix https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=52844 --- projects/ngolo-fuzzing/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ngolo-fuzzing/build.sh b/projects/ngolo-fuzzing/build.sh index e77bbc942..689bc183d 100755 --- a/projects/ngolo-fuzzing/build.sh +++ b/projects/ngolo-fuzzing/build.sh @@ -30,7 +30,7 @@ compile_package () { $SRC/ngolo-fuzzing/ngolo-fuzzing $args $pkg fuzz_ng_$pkg_flat # applies special python patcher if any ls $SRC/ngolo-fuzzing/std/$pkg_flat.py && ( - python $SRC/ngolo-fuzzing/std/$pkg_flat.py fuzz_ng_$pkg_flat/fuzz_ng.go > fuzz_ng_$pkg_flat/fuzz_ngp.go + python3 $SRC/ngolo-fuzzing/std/$pkg_flat.py fuzz_ng_$pkg_flat/fuzz_ng.go > fuzz_ng_$pkg_flat/fuzz_ngp.go mv fuzz_ng_$pkg_flat/fuzz_ngp.go fuzz_ng_$pkg_flat/fuzz_ng.go ) (