support for paths with spaces in makefile
This commit is contained in:
@@ -32,7 +32,7 @@ OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
|
|||||||
|
|
||||||
|
|
||||||
# Source and Build DIR's
|
# Source and Build DIR's
|
||||||
BLENDER_DIR:=$(shell pwd -P)
|
BLENDER_DIR:="$(shell pwd -P)"
|
||||||
BUILD_TYPE:=Release
|
BUILD_TYPE:=Release
|
||||||
|
|
||||||
ifndef BUILD_CMAKE_ARGS
|
ifndef BUILD_CMAKE_ARGS
|
||||||
@@ -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
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user