[PATCH] D42008: Switch from Bourne shell to simply base shell to build libfuzzer
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 12 15:46:50 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT322422: Switch from Bourne shell to simply base shell to build libfuzzer (authored by kamil, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D42008?vs=129692&id=129720#toc
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D42008
Files:
lib/fuzzer/build.sh
Index: lib/fuzzer/build.sh
===================================================================
--- lib/fuzzer/build.sh
+++ 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42008.129720.patch
Type: text/x-patch
Size: 284 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180112/cd45cf56/attachment.bin>
More information about the llvm-commits
mailing list