aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
Diffstat (limited to 'projects')
-rw-r--r--projects/dropbear/build.sh2
-rw-r--r--projects/tinyxml2/build.sh1
-rwxr-xr-xprojects/woff2/build.sh2
3 files changed, 3 insertions, 2 deletions
diff --git a/projects/dropbear/build.sh b/projects/dropbear/build.sh
index 751446d9..a2d83bb3 100644
--- a/projects/dropbear/build.sh
+++ b/projects/dropbear/build.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/projects/tinyxml2/build.sh b/projects/tinyxml2/build.sh
index f49c87a5..a31ccfda 100644
--- a/projects/tinyxml2/build.sh
+++ b/projects/tinyxml2/build.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/projects/woff2/build.sh b/projects/woff2/build.sh
index 2f25ddd1..9143838e 100755
--- a/projects/woff2/build.sh
+++ b/projects/woff2/build.sh
@@ -27,7 +27,7 @@ make -j$(nproc) CC="$CC $CFLAGS" CXX="$CXX $CXXFLAGS" CANONICAL_PREFIXES= all \
NOISY_LOGGING=
# Build fuzzers
-for fuzzer_archive in $(ls src/*fuzzer*.a); do
+for fuzzer_archive in src/*fuzzer*.a; do
fuzzer_name=$(basename ${fuzzer_archive%.a})
$CXX $CXXFLAGS -lFuzzingEngine $fuzzer_archive \
-o $OUT/$fuzzer_name