Revision: 38523
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38523
Author:   campbellbarton
Date:     2011-07-20 06:05:47 +0000 (Wed, 20 Jul 2011)
Log Message:
-----------
patch [#28031] Minor typo in Blenlib
from Scott Giese (sgiese)

Modified Paths:
--------------
    trunk/blender/GNUmakefile
    trunk/blender/source/blender/blenlib/intern/path_util.c

Modified: trunk/blender/GNUmakefile
===================================================================
--- trunk/blender/GNUmakefile   2011-07-20 05:57:38 UTC (rev 38522)
+++ trunk/blender/GNUmakefile   2011-07-20 06:05:47 UTC (rev 38523)
@@ -73,7 +73,7 @@
 
        @echo
        @echo Building Blender ...
-       make -C $(BUILD_DIR) -s -j $(NPROCS) install
+       $(MAKE) -C $(BUILD_DIR) -s -j $(NPROCS) install
        @echo
        @echo edit build configuration with: "$(BUILD_DIR)/CMakeCache.txt" run 
make again to rebuild.
        @echo blender installed, run from: "$(BUILD_DIR)/bin/blender"
@@ -112,6 +112,6 @@
        python3 source/tests/check_deprecated.py
 
 clean:
-       make -C $(BUILD_DIR) clean
+       $(MAKE) -C $(BUILD_DIR) clean
 
 .PHONY: all

Modified: trunk/blender/source/blender/blenlib/intern/path_util.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/path_util.c     2011-07-20 
05:57:38 UTC (rev 38522)
+++ trunk/blender/source/blender/blenlib/intern/path_util.c     2011-07-20 
06:05:47 UTC (rev 38523)
@@ -1680,7 +1680,7 @@
        if(GetModuleFileName(0, fullname, maxlen)) {
                if(!BLI_exists(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;
        }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to