summaryrefslogtreecommitdiff
path: root/utils/release
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2015-08-03 20:19:35 +0000
committerRenato Golin <renato.golin@linaro.org>2015-08-03 20:19:35 +0000
commitf3f35ecb541012cadbadb5042eb25962feab858a (patch)
treee5520a7b9831ad02947f9f8739ed9910ab516252 /utils/release
parent43247f1977398dda1964a38881a1a4aff9c17dfc (diff)
[Release Script] Check for correct symlink name
While checking for the existence of the clang-tools-extra directory, the script was not checking for its destination name, "extra", and the script was failing when re-running without checking out new sources. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/release')
-rwxr-xr-xutils/release/test-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/release/test-release.sh b/utils/release/test-release.sh
index a10e4fd9a16..f2c37d0bb15 100755
--- a/utils/release/test-release.sh
+++ b/utils/release/test-release.sh
@@ -283,7 +283,7 @@ function export_sources() {
ln -s ../../cfe.src clang
fi
cd $BuildDir/llvm.src/tools/clang/tools
- if [ ! -h clang-tools-extra ]; then
+ if [ ! -h extra ]; then
ln -s ../../../../clang-tools-extra.src extra
fi
cd $BuildDir/llvm.src/projects