summaryrefslogtreecommitdiffhomepage
path: root/git-buildpackage
diff options
context:
space:
mode:
Diffstat (limited to 'git-buildpackage')
-rwxr-xr-xgit-buildpackage3
1 files changed, 3 insertions, 0 deletions
diff --git a/git-buildpackage b/git-buildpackage
index b4027aff..f59b6c12 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -36,6 +36,9 @@ def main(argv):
args = [ arg for arg in argv[1:] if arg.find('--git-') == 0 ]
dpkg_args = [ arg for arg in argv[1:] if arg.find('--git-') == -1 ]
+ if "--help" in dpkg_args:
+ args.append('--help')
+
parser=optparse.OptionParser()
parser.add_option("--git-ignore-new", action="store_true", dest="ignore_new", default=False,
help="build with incommited changes in the source tree")