summaryrefslogtreecommitdiffstats
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
commit893f6767344ad00780da34c51d5fc754dda214db (patch)
tree1446ad8f1f3a0a0d75f0fde87cb9710263348ed6
parente44a8a7066269b77e6f2ca621fe6b6225abf06c3 (diff)
downloadbcm5719-llvm-893f6767344ad00780da34c51d5fc754dda214db.tar.gz
bcm5719-llvm-893f6767344ad00780da34c51d5fc754dda214db.zip
[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. llvm-svn: 243898
-rwxr-xr-xllvm/utils/release/test-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh
index a10e4fd9a16..f2c37d0bb15 100755
--- a/llvm/utils/release/test-release.sh
+++ b/llvm/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
OpenPOWER on IntegriCloud