for the default make/cmake wrapper, use ../build_os rather then ../build/os

This commit is contained in:
Campbell Barton
2012-08-15 22:59:23 +00:00
parent 417e99df22
commit 121fd266b0

View File

@@ -19,9 +19,9 @@
# #
# ##### END GPL LICENSE BLOCK ##### # ##### END GPL LICENSE BLOCK #####
# This Makefile does an out-of-source CMake build in ../build/`OS`_`CPU` # This Makefile does an out-of-source CMake build in ../build_`OS`_`CPU`
# eg: # eg:
# ../build/Linux_i386 # ../build_linux_i386
# This is for users who like to configure & build blender with a single command. # This is for users who like to configure & build blender with a single command.
@@ -40,7 +40,7 @@ ifndef BUILD_CMAKE_ARGS
endif endif
ifndef BUILD_DIR ifndef BUILD_DIR
BUILD_DIR:=$(shell dirname $(BLENDER_DIR))/build/$(OS_NCASE) BUILD_DIR:=$(shell dirname $(BLENDER_DIR))/build_$(OS_NCASE)
endif endif