From 193bd04207e947ef8737979fe445ab9d67114928 Mon Sep 17 00:00:00 2001 From: Erik van der Kouwe Date: Sat, 21 Jun 2014 07:08:42 -0700 Subject: [PATCH] configure.llvm: add INTERACTIVE environment variable which can be set to no to prevent questions from being asked --- minix/llvm/configure.llvm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/minix/llvm/configure.llvm b/minix/llvm/configure.llvm index 1b370257d..7d6866c74 100755 --- a/minix/llvm/configure.llvm +++ b/minix/llvm/configure.llvm @@ -51,7 +51,11 @@ if [ "${ROOT}" == "" ]; then echo "Please specify the path to the \"llvm-apps\" repository..." echo "Default value: ${DEFAULT_LLVM_ROOT} . " echo "If this is correct, press ENTER. Otherwise please enter the path." - read response + if [ "$INTERACTIVE" = "no" ]; then + response="" + else + read response + fi if [ "" == "${response}" ]; then ROOT=${DEFAULT_LLVM_ROOT} @@ -88,7 +92,11 @@ fi if [ "${GEN_GOLD_PLUGIN}" == "yes" ] && [ -f "${MYPWD}/.gold_generated" ]; then echo "It is found that Gold plugin has already been generated. Would you like to re-generate? [y | n]" - read response + if [ "$INTERACTIVE" == "no" ]; then + response=n + else + read response + fi if [ "y" == "$response" ] || [ "Y" == "$response" ]; then echo "Gold shall be regenerated." else -- 2.44.0