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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-15 19:20:53 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-15 19:20:53 +0400
commit7fb16fb5ec8951a2118aadbeaf8fbff214a059f0 (patch)
tree4c69645d8c6d97af29d4e54e44c608cbedc46073 /source/creator
parentcfa5580843cabf86e1c6ca9eef132c5ebfa65f2d (diff)
Update --help message for new path environment variables.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 34322ea6b73..ac79c0e6f80 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -289,11 +289,13 @@ static int print_help(int argc, char **argv, void *data)
printf ("\t\t\"blender --background test.blend --render-output /tmp --render-frame 1\" works as expected.\n\n");
printf ("\nEnvironment Variables:\n");
- printf (" $HOME\t\t\tStore '.blender/' containing defaults, bookmarks and user scripts.\n");
- printf (" $BLENDERPATH System directory to use for data files and scripts.\n");
- printf (" For this build of blender the default $BLENDERPATH is...\n");
- printf (" \"%s\"\n", blender_path);
- printf (" setting the $BLENDERPATH will override this\n");
+ printf (" $BLENDER_USER_CONFIG Directory for user configuration files.\n");
+ printf (" $BLENDER_SYSTEM_CONFIG Directory for system wide configuration files.\n");
+ printf (" $BLENDER_USER_SCRIPTS Directory for user scripts.\n");
+ printf (" $BLENDER_SYSTEM_SCRIPTS Directory for system wide scripts.\n");
+ printf (" $BLENDER_USER_DATAFILES Directory for user data files (icons, translations, ..).\n");
+ printf (" $BLENDER_SYSTEM_DATAFILES Directory for system wide data files.\n");
+ printf (" $BLENDER_SYSTEM_PYTHON Directory for system python libraries.\n");
#ifdef WIN32
printf (" $TEMP Store temporary files here.\n");
#else