aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-03-17 15:54:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-03-17 15:54:07 +0200
commitfdb3931c1948fbf9d56c98165f411aa5abf1b02d (patch)
tree8ac973ba3a045f111a1b118cd1681ba4e222d919 /build2
parent9f93d058c363ef61802222d8a63a75b0643c8bf0 (diff)
Disable amalgamation in configurations created by create meta-operation
Diffstat (limited to 'build2')
-rw-r--r--build2/config/operation.cxx5
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;