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 | 24e02b104395d82707adb252d4a1a94bf5d04963 (patch) | |
tree | e12590fe1998c3134aa91e19dcdd217043d5a81b /llvm/projects/sample | |
parent | 631f08583760c8d0ddfe0a10a3d7ea9248ebf313 (diff) | |
download | bcm5719-llvm-24e02b104395d82707adb252d4a1a94bf5d04963.tar.gz bcm5719-llvm-24e02b104395d82707adb252d4a1a94bf5d04963.zip |
Fix bash-isms.
llvm-svn: 67647
Diffstat (limited to 'llvm/projects/sample')
-rwxr-xr-x | llvm/projects/sample/autoconf/AutoRegen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/projects/sample/autoconf/AutoRegen.sh b/llvm/projects/sample/autoconf/AutoRegen.sh index c9cc905cd09..7c04715cdf4 100755 --- a/llvm/projects/sample/autoconf/AutoRegen.sh +++ b/llvm/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 |