diff options
Diffstat (limited to 'MgaRepo/commands/buildrpm.py')
-rw-r--r-- | MgaRepo/commands/buildrpm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MgaRepo/commands/buildrpm.py b/MgaRepo/commands/buildrpm.py index 337ae2a..9caec45 100644 --- a/MgaRepo/commands/buildrpm.py +++ b/MgaRepo/commands/buildrpm.py @@ -19,6 +19,7 @@ Options: -s Jump to specific build stage (--short-circuit) -l Use subversion log to build rpm %changelog -F Do not use full name & email for packagers in %changelog + -- Options and arguments following will be passed to rpmbuild """ @@ -35,6 +36,7 @@ def parse_options(): parser.add_option("-F", dest="fullnames", default=True, action="store_false") opts, args = parser.parse_args() + opts.rpmargs = parser.rargs return opts def main(): |