diff options
-rw-r--r-- | build/SConscript.main | 1 | ||||
-rw-r--r-- | webkit/build/port/SConscript | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index 8de0647..18183b7 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -376,6 +376,7 @@ if ARGUMENTS.get('VERBOSE') in (None, '0'): env['CXXCOMSTR'] = 'Compiling $TARGET ...' env['ARCOMSTR'] = 'Archiving $TARGET ...' env['LINKCOMSTR'] = 'Linking $TARGET ...' + env['BINDINGSCOMSTR'] = 'Building bindings in $TARGET ...' # Place the .sconsign.dblite in the build directory. diff --git a/webkit/build/port/SConscript b/webkit/build/port/SConscript index 6c1f499..be8eebf 100644 --- a/webkit/build/port/SConscript +++ b/webkit/build/port/SConscript @@ -114,14 +114,14 @@ def BindingsEmitter(target, source, env): env.Depends(new_h, bindings_perl_modules) return new_target, source - env.Append( - BUILDERS = {'Bindings' : Builder(action = '$BINDINGSCOM', - src_suffix = '.idl', - emitter = BindingsEmitter, - ), - }, + BUILDERS = {'Bindings': Builder( + action = Action('$BINDINGSCOM', '$BINDINGSCOMSTR'), + src_suffix = '.idl', + emitter = BindingsEmitter, + )}, ) + env.Replace( # TODO(bradnelson): don't have the path change here!!! # TODO(bradnelson): fix ugly hack with one include! |