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:
authorCampbell Barton <ideasman42@gmail.com>2013-11-15 11:59:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-11-15 11:59:50 +0400
commit825b0e8bc422174965ed8c0376d3d25b4f923394 (patch)
tree7e9076a289f80c6ac6d5e5184552f8002fc34917 /GNUmakefile
parent345c5092397a98845fb384a5ecd172d3d0ccdd74 (diff)
support for paths with spaces in makefile
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 417ff7770ed..26aaa3f0565 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -32,7 +32,7 @@ OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
# Source and Build DIR's
-BLENDER_DIR:=$(shell pwd -P)
+BLENDER_DIR:="$(shell pwd -P)"
BUILD_TYPE:=Release
ifndef BUILD_CMAKE_ARGS
@@ -40,7 +40,7 @@ ifndef BUILD_CMAKE_ARGS
endif
ifndef BUILD_DIR
- BUILD_DIR:=$(shell dirname $(BLENDER_DIR))/build_$(OS_NCASE)
+ BUILD_DIR:="$(shell dirname $(BLENDER_DIR))/build_$(OS_NCASE)"
endif