aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/buildrpm.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/commands/buildrpm.py')
-rw-r--r--MgaRepo/commands/buildrpm.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/MgaRepo/commands/buildrpm.py b/MgaRepo/commands/buildrpm.py
index 76fa41e..421ece0 100644
--- a/MgaRepo/commands/buildrpm.py
+++ b/MgaRepo/commands/buildrpm.py
@@ -11,6 +11,7 @@ Builds the binary RPM(s) (.rpm) file(s) of a given package.
Options:
-bX Build stage option, where X is stage, default is -bb
+ -I Don't automatically try install missing build dependencies
-l Disable rpmlint check of packages built
-P USER Define the RPM packager information to USER
-q Quiet build output
@@ -21,6 +22,7 @@ Options:
def parse_options():
parser = OptionParser(HELP)
parser.add_option("-b", dest="build_cmd", default="a")
+ parser.add_option("-I", dest="installdeps", action="store_false", default=True)
parser.add_option("-l", dest="rpmlint", action="store_false", default=True)
parser.add_option("-P", dest="packager", default="")
parser.add_option("-q", "--quiet", dest="verbose", action="store_false", default=True)