Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-20 13:05:03 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-30 18:57:18 +0300
commit018fe9e006a87daa26c4f3f49220f43884cf32df (patch)
treecc121d172c02fe3d887066aed5f76ce3e9c05892 /GNUmakefile
parent410cde82e352d5f4f3588a6e179a22779a7dd3ab (diff)
Build: move "make update" on macOS and Linux to Python script
Differential Revision: https://developer.blender.org/D5545
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/GNUmakefile b/GNUmakefile
index d17596d203d..92d1efca21d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -531,17 +531,7 @@ icons_geom: .FORCE
"$(BLENDER_DIR)/release/datafiles/blender_icons_geom_update.py"
update: .FORCE
- if [ "$(OS_NCASE)" = "darwin" ] && [ ! -d "../lib/$(OS_NCASE)" ]; then \
- svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/$(OS_NCASE) ../lib/$(OS_NCASE) ; \
- fi
- if [ -d "../lib" ]; then \
- svn cleanup ../lib/* ; \
- svn update ../lib/* ; \
- fi
- git pull --rebase
- git submodule update --init --recursive
- git submodule foreach git checkout master
- git submodule foreach git pull --rebase origin master
+ python3 ./build_files/utils/make_update.py
format: .FORCE
PATH="../lib/${OS_NCASE}/llvm/bin/:$(PATH)" \