Properly fix T2182 (add a --version option to enlightenment)

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-05-18 14:41:45 -04:00
parent e5b654cf9e
commit 27a11e0c46
1 changed files with 7 additions and 0 deletions

View File

@ -1170,6 +1170,12 @@ _e_main_parse_arguments(int argc, char **argv)
locked = EINA_TRUE;
else if (!strcmp(argv[i], "-nopause"))
e_nopause = EINA_TRUE;
else if ((!strcmp(argv[i], "-version")) ||
(!strcmp(argv[i], "--version")))
{
printf(_("Version: %s\n"), PACKAGE_VERSION);
_e_main_shutdown(-1);
}
else if ((!strcmp(argv[i], "-h")) ||
(!strcmp(argv[i], "-help")) ||
(!strcmp(argv[i], "--help")))
@ -1198,6 +1204,7 @@ _e_main_parse_arguments(int argc, char **argv)
"\t\tStart with desklock on, so password will be asked.\n"
"\t-i-really-know-what-i-am-doing-and-accept-full-responsibility-for-it\n"
"\t\tIf you need this help, you don't need this option.\n"
"\t-version\n"
)
);
_e_main_shutdown(-1);