forked from OSchip/llvm-project
Switch from Bourne shell to simply base shell to build libfuzzer
Summary: It is not necessary launching the build script with bash. Reviewers: krytarowski Reviewed By: krytarowski Subscribers: llvm-commits, #sanitizers Differential Revision: https://reviews.llvm.org/D42008 llvm-svn: 322422
This commit is contained in:
parent
75702389bd
commit
4463ae4f6d
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/bin/sh
|
||||
LIBFUZZER_SRC_DIR=$(dirname $0)
|
||||
CXX="${CXX:-clang}"
|
||||
for f in $LIBFUZZER_SRC_DIR/*.cpp; do
|
||||
|
|
Loading…
Reference in New Issue