From d5173ca189a080d0bb3a56200203c32a40c4b6e3 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 18 Jan 2011 07:20:26 +0100 Subject: pidl:wscript: don't warn about pidl gammar file changes for now We may add some logic that uses git diff HEAD to detect this changes in developer mode later again. metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Tue Jan 18 08:10:06 CET 2011 on sn-devel-104 --- pidl/wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pidl') diff --git a/pidl/wscript b/pidl/wscript index 5b3e07c059..e60ca202f5 100644 --- a/pidl/wscript +++ b/pidl/wscript @@ -59,11 +59,13 @@ def build(bld): # Only if the source has changed do we want to re-run yapp # But we force the developer to use the pidl standalone build # to regenerate the files. - need_yapp_build = ('YAPP' in bld.env and ( + # TODO: only warn in developer mode and if 'git diff HEAD' + # shows a difference + warn_about_grammar_changes = ('PIDL_BUILD_WARNINGS' in bld.env and ( bld.IS_NEWER('idl.yp', 'lib/Parse/Pidl/IDL.pm') or bld.IS_NEWER('expr.yp', 'lib/Parse/Pidl/Expr.pm'))) - if need_yapp_build: + if warn_about_grammar_changes: Logs.warn(''' Pidl grammar files have changed. Please use the pidl standalone build to regenerate them with yapp. -- cgit