Commit: 959da7477d1718fb8f9a5c500df57a318689b84d Author: Lawrence D'Oliveiro Date: Tue Feb 4 18:49:30 2014 +0100 https://developer.blender.org/rB959da7477d1718fb8f9a5c500df57a318689b84d
Fix missing $BLENDER_USER_DATAFILES in command line help text. Reviewed By: brecht Differential Revision: https://developer.blender.org/D249 =================================================================== M source/creator/creator.c =================================================================== diff --git a/source/creator/creator.c b/source/creator/creator.c index 8559a08..82b86a2 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -370,7 +370,7 @@ static int print_help(int UNUSED(argc), const char **UNUSED(argv), void *data) printf(" $BLENDER_USER_CONFIG Directory for user configuration files.\n"); printf(" $BLENDER_USER_SCRIPTS Directory for user scripts.\n"); printf(" $BLENDER_SYSTEM_SCRIPTS Directory for system wide scripts.\n"); - printf(" Directory for user data files (icons, translations, ..).\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 _______________________________________________ Bf-blender-cvs mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-blender-cvs
