aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-03-25 01:08:31 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-03-25 01:08:31 +0200
commit06a69a6b1c020e348e7f0dc40ee65c4f187c3b2a (patch)
tree73ea261addb05d63abc025611766c0711cf3f016 /backends.py
parent3e3db7fcff9d577f4d91d6529838fd123bf6840d (diff)
downloadmeson-06a69a6b1c020e348e7f0dc40ee65c4f187c3b2a.zip
meson-06a69a6b1c020e348e7f0dc40ee65c4f187c3b2a.tar.gz
meson-06a69a6b1c020e348e7f0dc40ee65c4f187c3b2a.tar.bz2
Better header in Ninja file.
Diffstat (limited to 'backends.py')
-rwxr-xr-xbackends.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends.py b/backends.py
index 5df3182..94f1987 100755
--- a/backends.py
+++ b/backends.py
@@ -276,7 +276,8 @@ class NinjaBackend(Backend):
outfile = open(tempfilename, 'w')
self.generate_configure_files()
outfile.write('# This is the build file for project "%s"\n' % self.build.get_project())
- outfile.write('# It is autogenerated. Do not edit by hand.\n\n')
+ outfile.write('# It is autogenerated by the Meson build system.\n')
+ outfile.write('# Do not edit by hand.\n\n')
self.generate_rules(outfile)
outfile.write('# Build rules for targets\n\n')
[self.generate_target(t, outfile) for t in self.build.get_targets().values()]