Skip to content

Commit

Permalink
test-release.sh: don't include /usr/local prefix in the tarball
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242706 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
zmodem committed Jul 20, 2015
1 parent 4ee8a18 commit ca221d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/release/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -372,13 +372,13 @@ function clean_RPATH() {
function package_release() {
cwd=`pwd`
cd $BuildDir/Phase3/Release
mv llvmCore-$Release-$RC.install $Package
mv llvmCore-$Release-$RC.install/usr/local $Package
if [ "$use_gzip" = "yes" ]; then
tar cfz $BuildDir/$Package.tar.gz $Package
else
tar cfJ $BuildDir/$Package.tar.xz $Package
fi
mv $Package llvmCore-$Release-$RC.install
mv $Package llvmCore-$Release-$RC.install/usr/local
cd $cwd
}

Expand Down

0 comments on commit ca221d0

Please sign in to comment.