Code cleanup: remove patch series from libmv

Since we're using own libmv branch from git.blender.org
we don't need to have local patches for libmv in blender
source tree.
This commit is contained in:
Sergey Sharybin 2014-01-02 15:22:28 +06:00
parent f9e0ac4ced
commit f9353b8e8d
2 changed files with 0 additions and 6 deletions

View File

@ -14,14 +14,8 @@ tmp=`mktemp -d`
git clone -b $BRANCH $repo $tmp/libmv
#git --git-dir $tmp/libmv/.git --work-tree $tmp/libmv log --since="1 month ago" > ChangeLog
git --git-dir $tmp/libmv/.git --work-tree $tmp/libmv log -n 50 > ChangeLog
for p in `cat ./patches/series`; do
echo "Applying patch $p..."
cat ./patches/$p | patch -d $tmp/libmv -p1
done
find libmv -type f -not -iwholename '*.svn*' -exec rm -rf {} \;
find third_party -type f -not -iwholename '*.svn*' -not -iwholename '*third_party/ceres*' \
-not -iwholename '*third_party/SConscript*' -not -iwholename '*third_party/CMakeLists.txt*' \

View File