Commit 5817c403 authored by Bill Wendling's avatar Bill Wendling
Browse files

Merging r143302:

------------------------------------------------------------------------
r143302 | void | 2011-10-29 16:49:52 -0700 (Sat, 29 Oct 2011) | 1 line

Do a relative path ln command instead of an absolute path one. Some people strangely enough have different directory layouts...
------------------------------------------------------------------------

llvm-svn: 143303
parent 925024ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -171,11 +171,11 @@ function export_sources() {
    echo "# Creating symlinks"
    cd $BuildDir/llvm.src/tools
    if [ ! -h clang ]; then
        ln -s $BuildDir/cfe.src clang
        ln -s ../../cfe.src clang
    fi
    cd $BuildDir/llvm.src/projects
    if [ ! -h llvm-test ]; then
        ln -s $BuildDir/test-suite.src llvm-test
        ln -s ../../test-suite.src llvm-test
    fi
    cd $BuildDir
}