Skip to content

Commit

Permalink
Merging r143302:
Browse files Browse the repository at this point in the history
------------------------------------------------------------------------
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...
------------------------------------------------------------------------


git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_30@143303 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
isanbard committed Oct 29, 2011
1 parent 7834dbf commit 4e58659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/release/test-release.sh
Expand Up @@ -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
}
Expand Down

0 comments on commit 4e58659

Please sign in to comment.