aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/bootstrap/compile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bootstrap/compile.sh')
-rwxr-xr-xscripts/bootstrap/compile.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/scripts/bootstrap/compile.sh b/scripts/bootstrap/compile.sh
index 3fcffba31e..6ca0e85b38 100755
--- a/scripts/bootstrap/compile.sh
+++ b/scripts/bootstrap/compile.sh
@@ -233,42 +233,6 @@ cp $1 $2/MANIFEST
EOF
chmod 0755 ${ARCHIVE_DIR}/_embedded_binaries/build-runfiles${EXE_EXT}
-log "Creating process-wrapper..."
-cat <<'EOF' >${ARCHIVE_DIR}/_embedded_binaries/process-wrapper${EXE_EXT}
-#!/bin/sh
-# Dummy process wrapper, does not support timeout
-shift 2
-stdout="$1"
-stderr="$2"
-shift 2
-
-if [ "$stdout" = "-" ]
-then
- if [ "$stderr" = "-" ]
- then
- "$@"
- exit $?
- else
- "$@" 2>"$stderr"
- exit $?
- fi
-else
- if [ "$stderr" = "-" ]
- then
- "$@" >"$stdout"
- exit $?
- else
- "$@" 2>"$stderr" >"$stdout"
- exit $?
- fi
-fi
-
-
-"$@"
-exit $?
-EOF
-chmod 0755 ${ARCHIVE_DIR}/_embedded_binaries/process-wrapper${EXE_EXT}
-
function build_jni() {
local -r output_dir=$1