Skip to content

Commit

Permalink
test-release.sh: Fix naming of OpenMP runtime tarball
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244058 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
zmodem committed Aug 5, 2015
1 parent f9bc05c commit 9ef4c12
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion utils/release/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,12 @@ function build_OpenMP() {
echo "# ${MAKE} install DESTDIR=$BuildDir/Phase3/openmp.install"
${MAKE} install DESTDIR=$BuildDir/Phase3/openmp.install

OpenMPPackage=OpenMP-$Triple
OpenMPPackage=OpenMP-$Release
if [ $RC != "final" ]; then
OpenMPPackage=$OpenMPPackage-$RC
fi
OpenMPPackage=$OpenMPPackage-$Triple

mv $BuildDir/Phase3/openmp.install/usr/local $BuildDir/$OpenMPPackage
cd $BuildDir
tar cvfJ $BuildDir/$OpenMPPackage.tar.xz $OpenMPPackage
Expand Down

0 comments on commit 9ef4c12

Please sign in to comment.