* (cli/build.py): pisi build command now works in debug mode unless -q

or --quiet parameter is passed.

BUG:FIXED:10052
This commit is contained in:
Serdar Dalgıç
2009-08-11 15:13:07 +00:00
parent 61224364e2
commit f33cb88109
2 changed files with 9 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
2009-08-11 Serdar Dalgıç <dalgic.srdr@gmail.com>
* (cli/build.py): pisi build command now works in debug mode unless -q
or --quiet parameter is passed.
2009-08-07 Ozan Çağlayan <ozan@pardus.org.tr>
* (utils.py): Strip kernel and modules as well as other binaries to build
dbginfo packages for them.
+5
View File
@@ -52,6 +52,8 @@ to be downloaded from a repository containing sources.
group.add_option("--ignore-build-no", action="store_true",
default=False,
help=_("Do not take build no into account."))
group.add_option("-q", "--quiet", action="store_true", default=False,
help=_("Run pisi build process in silent mode"))
group.add_option("--ignore-dependency", action="store_true",
default=False,
help=_("Do not take dependency information into account"))
@@ -96,6 +98,9 @@ to be downloaded from a repository containing sources.
self.help()
return
if not self.options.quiet:
self.options.debug = True
self.init()
if ctx.get_option('package_format') not in Build.package_formats: