summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-08-09 09:48:34 +0200
committerJürg Billeter <j@bitron.ch>2010-08-09 09:48:34 +0200
commit51e5c7f5b4019417696e29a317b1b92118fe6a79 (patch)
treeaff82788d186572d7ef516f3200b9482bb64928d /compiler
parentc403c7f9c92a2c1a8ba6c988ea8fc4f48650c734 (diff)
downloadvala-51e5c7f5b4019417696e29a317b1b92118fe6a79.tar.gz
valac: Enable version header by default
Keep it disabled when building vala itself for bootstrapping reasons.
Diffstat (limited to 'compiler')
-rw-r--r--compiler/valacompiler.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/valacompiler.vala b/compiler/valacompiler.vala
index 0718f14a2..674d5cef9 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -215,7 +215,7 @@ class Vala.Compiler {
context.report.enable_warnings = !disable_warnings;
context.report.set_verbose_errors (!quiet_mode);
context.verbose_mode = verbose_mode;
- context.version_header = enable_version_header;
+ context.version_header = !disable_version_header;
context.ccode_only = ccode_only;
context.compile_only = compile_only;