patch [#28031] Minor typo in Blenlib

from Scott Giese (sgiese)
This commit is contained in:
Campbell Barton 2011-07-20 06:05:47 +00:00
parent 0ed523a8dd
commit 74219d2704
2 changed files with 3 additions and 3 deletions

@ -73,7 +73,7 @@ all:
@echo @echo
@echo Building Blender ... @echo Building Blender ...
make -C $(BUILD_DIR) -s -j $(NPROCS) install $(MAKE) -C $(BUILD_DIR) -s -j $(NPROCS) install
@echo @echo
@echo edit build configuration with: "$(BUILD_DIR)/CMakeCache.txt" run make again to rebuild. @echo edit build configuration with: "$(BUILD_DIR)/CMakeCache.txt" run make again to rebuild.
@echo blender installed, run from: "$(BUILD_DIR)/bin/blender" @echo blender installed, run from: "$(BUILD_DIR)/bin/blender"
@ -112,6 +112,6 @@ test_deprecated:
python3 source/tests/check_deprecated.py python3 source/tests/check_deprecated.py
clean: clean:
make -C $(BUILD_DIR) clean $(MAKE) -C $(BUILD_DIR) clean
.PHONY: all .PHONY: all

@ -1680,7 +1680,7 @@ void BLI_where_am_i(char *fullname, const size_t maxlen, const char *name)
if(GetModuleFileName(0, fullname, maxlen)) { if(GetModuleFileName(0, fullname, maxlen)) {
if(!BLI_exists(fullname)) { if(!BLI_exists(fullname)) {
printf("path can't be found: \"%.*s\"\n", maxlen, fullname); printf("path can't be found: \"%.*s\"\n", maxlen, fullname);
MessageBox(NULL, "path constains invalid characters or is too long (see console)", "Error", MB_OK); MessageBox(NULL, "path contains invalid characters or is too long (see console)", "Error", MB_OK);
} }
return; return;
} }