diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-24 23:46:25 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-24 23:46:25 +0000 |
commit | 34be8be297fd3c46a970235edac021c1fe209744 (patch) | |
tree | a012ca2b74e9b17e278f3c8b3701a7939a32dd03 /llvm/projects/sample/autoconf/AutoRegen.sh | |
parent | afcd6a3133e2c5daccc999958fd102a875e082b1 (diff) | |
download | bcm5719-llvm-34be8be297fd3c46a970235edac021c1fe209744.tar.gz bcm5719-llvm-34be8be297fd3c46a970235edac021c1fe209744.zip |
Fix paths; AutoRegen.sh changes its current working directory to be the
autoconf directory, but these paths need to be relative to the main
source directory.
llvm-svn: 67655
Diffstat (limited to 'llvm/projects/sample/autoconf/AutoRegen.sh')
-rwxr-xr-x | llvm/projects/sample/autoconf/AutoRegen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/projects/sample/autoconf/AutoRegen.sh b/llvm/projects/sample/autoconf/AutoRegen.sh index 126703ba5aa..6e6931c7a9b 100755 --- a/llvm/projects/sample/autoconf/AutoRegen.sh +++ b/llvm/projects/sample/autoconf/AutoRegen.sh @@ -13,14 +13,14 @@ cwd=`pwd` if test -d ../../../autoconf/m4 ; then cd ../../../autoconf/m4 llvm_m4=`pwd` - llvm_src_root=../../.. - llvm_obj_root=../../.. + llvm_src_root=../.. + llvm_obj_root=../.. cd $cwd elif test -d ../../llvm/autoconf/m4 ; then cd ../../llvm/autoconf/m4 llvm_m4=`pwd` - llvm_src_root=../.. - llvm_obj_root=../.. + llvm_src_root=.. + llvm_obj_root=.. cd $cwd else while true ; do |