aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2018-01-12 23:45:24 +0000
committerKamil Rytarowski <n54@gmx.com>2018-01-12 23:45:24 +0000
commit7e19f4a23969eac8909e062a85d87c176c3da30c (patch)
treed2f55857403a67497cd0081ae0d29fcc845c63ae
parent6084adf43283d73e355e1c291698916a79467a67 (diff)
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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@322422 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xlib/fuzzer/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuzzer/build.sh b/lib/fuzzer/build.sh
index 160d25199..504e54e3a 100755
--- a/lib/fuzzer/build.sh
+++ b/lib/fuzzer/build.sh
@@ -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