From 237e9efd41993aed063f08c2fc3b9e096057855c Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 27 Nov 2009 19:53:52 +0000 Subject: [PATCH] Pack everything 'mpicxx -show' in single 'linkflags' feature, to avoid undesired reordering. [SVN r57977] --- src/tools/mpi.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/mpi.jam b/src/tools/mpi.jam index 12c2993e9..38012474e 100644 --- a/src/tools/mpi.jam +++ b/src/tools/mpi.jam @@ -218,7 +218,7 @@ rule cmdline_to_features ( cmdline : unknown-features ? ) if $(otherflags) { for unknown in $(unknown-features) { - result += "$(unknown)$(otherflags)" ; + result += "$(unknown)$(otherflags:J= )" ; } }