Commit: c6681c65dd277531152c42624f4e7a2a9bf9870d Author: Campbell Barton Date: Thu Feb 28 10:33:58 2019 +1100 Branches: master https://developer.blender.org/rBc6681c65dd277531152c42624f4e7a2a9bf9870d
Makefile: use BLENDER_BIN variable if passed in When the default build path isn't used, it's still handy to be able to run utility commands. =================================================================== M GNUmakefile =================================================================== diff --git a/GNUmakefile b/GNUmakefile index b4347871e8a..afd1a4880b7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -212,10 +212,12 @@ endif # ----------------------------------------------------------------------------- # Blender binary path +# Allow passing in own BLENDER_BIN so developers who don't +# use the default build path can still use utility helpers. ifeq ($(OS), Darwin) - BLENDER_BIN="$(BUILD_DIR)/bin/blender.app/Contents/MacOS/blender" + BLENDER_BIN?="$(BUILD_DIR)/bin/blender.app/Contents/MacOS/blender" else - BLENDER_BIN="$(BUILD_DIR)/bin/blender" + BLENDER_BIN?="$(BUILD_DIR)/bin/blender" endif _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
