Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sjhbuild
diff options
context:
space:
mode:
authorSascha Silbe <sascha@silbe.org>2009-09-27 16:54:16 (GMT)
committer Sascha Silbe <sascha@silbe.org>2009-09-27 16:54:16 (GMT)
commit31140fd066aa85f639dabaf966268a1892a0005a (patch)
tree5d087c163378922aa40504309ec9e7c58b955849 /sjhbuild
parentf8188043dc23c531be59a83a76ce19289bcdc21e (diff)
depscheck: print message even if everything is OK (#999)
Diffstat (limited to 'sjhbuild')
-rw-r--r--sjhbuild/depscheck.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sjhbuild/depscheck.py b/sjhbuild/depscheck.py
index 838e524..4a9e01e 100644
--- a/sjhbuild/depscheck.py
+++ b/sjhbuild/depscheck.py
@@ -31,6 +31,8 @@ class cmd_depscheck(Command):
print 'Missing packages:'
print ' '.join(missing_deps)
sys.exit(1)
+ elif not options.script:
+ print 'All dependencies are installed.'
register_command(cmd_depscheck)