From 6942bd5b1d57ce6c2d0c00a5c5eba2198828a96c Mon Sep 17 00:00:00 2001 From: Carsten Kutzner Date: Fri, 15 Feb 2013 11:51:09 +0100 Subject: [PATCH] Made g_tune_pme work with 4.6 if user sets "-p" command line option Added "-p" (performance statistics log file) to the list of files that must not appear on the mdrun command line at launch time. (This would lead mdrun to refuse to launch due to an unknown command line option.) Change-Id: I268bbf6513709866b9a6a8d81c97706ccc832988 --- src/tools/gmx_tune_pme.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/tools/gmx_tune_pme.c b/src/tools/gmx_tune_pme.c index 6df7510b00..4d4cd76002 100644 --- a/src/tools/gmx_tune_pme.c +++ b/src/tools/gmx_tune_pme.c @@ -1741,9 +1741,10 @@ static void check_input( /* Returns TRUE when "opt" is needed at launch time */ static gmx_bool is_launch_file(char *opt, gmx_bool bSet) { - /* Apart from the input .tpr and the error log we need all options that were set - * on the command line and that do not start with -b */ - if (0 == strncmp(opt, "-b", 2) || 0 == strncmp(opt, "-s", 2) || 0 == strncmp(opt, "-err", 4)) + /* Apart from the input .tpr and the output log files we need all options that + * were set on the command line and that do not start with -b */ + if (0 == strncmp(opt, "-b" , 2) || 0 == strncmp(opt, "-s", 2) + || 0 == strncmp(opt, "-err", 4) || 0 == strncmp(opt, "-p", 2) ) { return FALSE; } -- 2.22.0