|
From: Julian S. <ju...@va...> - 2008-09-08 12:00:20
|
(this didn't make it to the list the first time)
> + −− --strategy
> + −− 'Find
> + −− all
> + −− BR-like
> + −− tags'
> + −− --gui_mode
>
> AND that’s wrong. I expected to see this:
>
> + −− --strategy 'Find all BR-like tags'
Hmm. Could you try the following patch (from Lénaïc Huard) and see
if it works?
J
Index: valkyrie/core/valkyrie_object.cpp
===================================================================
--- valkyrie/core/valkyrie_object.cpp (révision 449)
+++ valkyrie/core/valkyrie_object.cpp (copie de travail)
@@ -333,7 +333,7 @@
/* see if there were any flags given for the binary */
opt = findOption( BIN_FLAGS );
cfgVal = vkConfig->rdEntry( opt->m_longFlag, name() );
- modFlags += QStringList::split(" ", cfgVal);
+ modFlags += QStringList::split("<NEXT_ARG>", cfgVal);
}
return modFlags;
}
Index: valkyrie/options/parse_cmd_args.cpp
===================================================================
--- valkyrie/options/parse_cmd_args.cpp (révision 449)
+++ valkyrie/options/parse_cmd_args.cpp (copie de travail)
@@ -228,7 +228,7 @@
aList << args[i];
i++;
}
- QString flags = aList.join( " " );
+ QString flags = aList.join( "<NEXT_ARG>" );
qs_argval = !flags.isNull() ? flags : "";
rc = vk->checkOptArg( Valkyrie::BIN_FLAGS, qs_argval );
|