diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-03-17 15:54:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-03-17 15:54:07 +0200 |
commit | fdb3931c1948fbf9d56c98165f411aa5abf1b02d (patch) | |
tree | 8ac973ba3a045f111a1b118cd1681ba4e222d919 | |
parent | 9f93d058c363ef61802222d8a63a75b0643c8bf0 (diff) |
Disable amalgamation in configurations created by create meta-operation
-rw-r--r-- | build2/config/operation.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build2/config/operation.cxx b/build2/config/operation.cxx index 2285dd9..cf53292 100644 --- a/build2/config/operation.cxx +++ b/build2/config/operation.cxx @@ -675,10 +675,15 @@ namespace build2 { ofdstream ofs (f); + // For now we disable amalgamating this project. Sooner or later + // someone will probably want to do this, though (i.e., nested + // configurations). + // ofs << "# Generated by the create meta-operation. Edit if you " << "know what you are doing." << endl << "#" << endl << "project =" << endl + << "amalgamation =" << endl << endl << "using config" << endl; |