[llvm-commits] [llvm] r67647 - /llvm/trunk/projects/sample/autoconf/AutoRegen.sh
Dan Gohman
gohman at apple.com
Tue Mar 24 13:21:37 PDT 2009
Author: djg
Date: Tue Mar 24 15:21:37 2009
New Revision: 67647
URL: http://llvm.org/viewvc/llvm-project?rev=67647&view=rev
Log:
Fix bash-isms.
Modified:
llvm/trunk/projects/sample/autoconf/AutoRegen.sh
Modified: llvm/trunk/projects/sample/autoconf/AutoRegen.sh
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/sample/autoconf/AutoRegen.sh?rev=67647&r1=67646&r2=67647&view=diff
==============================================================================
--- llvm/trunk/projects/sample/autoconf/AutoRegen.sh (original)
+++ llvm/trunk/projects/sample/autoconf/AutoRegen.sh Tue Mar 24 15:21:37 2009
@@ -25,11 +25,11 @@
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
More information about the llvm-commits
mailing list