jhbuild r2514 - in trunk: . jhbuild/commands



Author: fpeters
Date: Thu Nov 13 23:33:49 2008
New Revision: 2514
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2514&view=rev

Log:
* jhbuild/commands/bootstrap.py: do not let it display a message about
bootstrap modules being outdated.



Modified:
   trunk/ChangeLog
   trunk/jhbuild/commands/bootstrap.py

Modified: trunk/jhbuild/commands/bootstrap.py
==============================================================================
--- trunk/jhbuild/commands/bootstrap.py	(original)
+++ trunk/jhbuild/commands/bootstrap.py	Thu Nov 13 23:33:49 2008
@@ -23,6 +23,7 @@
 import jhbuild.moduleset
 import jhbuild.frontends
 from jhbuild.commands import Command, register_command
+import jhbuild.commands.base
 from jhbuild.commands.base import cmd_build
 
 class cmd_bootstrap(cmd_build):
@@ -35,6 +36,10 @@
         # load the bootstrap module set
         if not args:
             args = ['meta-bootstrap']
+
+        # cancel the bootstrap updateness check as it has no sense (it *is*
+        # running bootstrap right now)
+        jhbuild.commands.base.check_bootstrap_updateness = lambda x: x
         return cmd_build.run(self, config, options, args)
 
 register_command(cmd_bootstrap)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]