diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-24 20:21:37 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-24 20:21:37 +0000 |
commit | c8f736455e281ba43164a4791c8d5f079ef00e98 (patch) | |
tree | e6a17478cfa3d99ece2a69da1391e34fd7bdbe22 /projects/sample/autoconf | |
parent | 545cd84b6c19a457f09711a5b6fc794c807526e7 (diff) | |
download | external_llvm-c8f736455e281ba43164a4791c8d5f079ef00e98.zip external_llvm-c8f736455e281ba43164a4791c8d5f079ef00e98.tar.gz external_llvm-c8f736455e281ba43164a4791c8d5f079ef00e98.tar.bz2 |
Fix bash-isms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/sample/autoconf')
-rwxr-xr-x | projects/sample/autoconf/AutoRegen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/sample/autoconf/AutoRegen.sh b/projects/sample/autoconf/AutoRegen.sh index c9cc905..7c04715 100755 --- a/projects/sample/autoconf/AutoRegen.sh +++ b/projects/sample/autoconf/AutoRegen.sh @@ -25,11 +25,11 @@ elif test -d ../../llvm/autoconf/m4 ; then else while true ; do echo "LLVM source root not found." - read -p "Enter full path to LLVM source:" + read -p "Enter full path to LLVM source:" REPLY if test -d "$REPLY/autoconf/m4" ; then llvm_src_root="$REPLY" llvm_m4="$REPLY/autoconf/m4" - read -p "Enter full path to LLVM objects (empty for same as source):" + read -p "Enter full path to LLVM objects (empty for same as source):" REPLY if test -d "$REPLY" ; then llvm_obj_root="$REPLY" else |