diff options
author | Fabian Meumertzheim <meumertzheim@code-intelligence.com> | 2021-05-12 16:03:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 07:03:21 -0700 |
commit | 10e888b5617ee53f03f58b76aa408b9adec9286e (patch) | |
tree | 2cbac5f118ac61db8f3c93852a928d2af6105ecb /projects/httplib2/build.sh | |
parent | c447cfedf46682dbabc05668e446419d47e22964 (diff) |
[all] Make fuzz targets world executable (#5751)
Making fuzz targets only user executable as the root user makes them
non-executable outside the container, e.g. in the oss-fuzz/build/ dir.
Diffstat (limited to 'projects/httplib2/build.sh')
-rw-r--r-- | projects/httplib2/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/httplib2/build.sh b/projects/httplib2/build.sh index 7a95cbee..ba9410d8 100644 --- a/projects/httplib2/build.sh +++ b/projects/httplib2/build.sh @@ -31,5 +31,5 @@ this_dir=\$(dirname \"\$0\") LD_PRELOAD=\$this_dir/sanitizer_with_fuzzer.so \ ASAN_OPTIONS=\$ASAN_OPTIONS:symbolize=1:external_symbolizer_path=\$this_dir/llvm-symbolizer:detect_leaks=0 \ \$this_dir/$fuzzer_package \$@" > $OUT/$fuzzer_basename - chmod u+x $OUT/$fuzzer_basename + chmod +x $OUT/$fuzzer_basename done |