From 8a68b2dba752e578c3087aa6ca32055a22b632db Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 8 May 2007 19:09:32 +0000 Subject: [PATCH] Add -wdir option as a synonym for -wd (to make us match the man page). This commit was SVN r14614. --- orte/tools/orterun/orterun.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/orte/tools/orterun/orterun.c b/orte/tools/orterun/orterun.c index f58d0d9fa8..8dfa05c55e 100644 --- a/orte/tools/orterun/orterun.c +++ b/orte/tools/orterun/orterun.c @@ -236,6 +236,9 @@ opal_cmd_line_init_t cmd_line_init[] = { { NULL, NULL, NULL, '\0', "wdir", "wdir", 1, &orterun_globals.wdir, OPAL_CMD_LINE_TYPE_STRING, "Set the working directory of the started processes" }, + { NULL, NULL, NULL, '\0', "wd", "wd", 1, + &orterun_globals.wdir, OPAL_CMD_LINE_TYPE_STRING, + "Synonym for --wdir" }, { NULL, NULL, NULL, '\0', "path", "path", 1, &orterun_globals.path, OPAL_CMD_LINE_TYPE_STRING, "PATH to be used to look for executables to start processes" },