aboutsummaryrefslogtreecommitdiff
path: root/projects/lua
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2021-02-05 07:26:31 -0800
committerGitHub <noreply@github.com>2021-02-05 07:26:31 -0800
commit1abfd6bd9256a4f45f7f65c4507c6831b02c18bb (patch)
treedde6c2aa25cbd812ef055218630ce597af91dbf4 /projects/lua
parent1a577209fa4f3a53c0e9137770c8892384bbc498 (diff)
downloadoss-fuzz-1abfd6bd9256a4f45f7f65c4507c6831b02c18bb.tar.gz
Fix lua afl++ build using another sed seperator (#5126)
Diffstat (limited to 'projects/lua')
-rwxr-xr-xprojects/lua/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/lua/build.sh b/projects/lua/build.sh
index 7c65d0d35..72f33c7f9 100755
--- a/projects/lua/build.sh
+++ b/projects/lua/build.sh
@@ -17,7 +17,7 @@
sed "s/CFLAGS=/CFLAGS+=/g" -i $SRC/lua/makefile
sed "s/MYLDFLAGS=/MYLDFLAGS=${CFLAGS} /g" -i $SRC/lua/makefile
-sed "s/CC= gcc/CC= ${CC}/g" -i $SRC/lua/makefile
+sed "s|CC= gcc|CC= ${CC}|g" -i $SRC/lua/makefile
cd $SRC/lua
make