From: Zac Medico Date: Wed, 18 Jun 2008 03:36:38 +0000 (-0000) Subject: Add a help string for --debug. X-Git-Tag: v2.2_rc1~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8f360f92e67301f4621dd30cd5e3e2c0c6bdebd6;p=portage.git Add a help string for --debug. svn path=/main/trunk/; revision=10711 --- diff --git a/bin/ebuild b/bin/ebuild index 75151b414..a91a78587 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -17,7 +17,7 @@ force_help = "When used together with the digest or manifest " + \ "that do not already exist in ${DISTDIR} will be automatically fetched." parser.add_option("--force", help=force_help, action="store_true", dest="force") -parser.add_option("--debug", action="store_true", dest="debug") +parser.add_option("--debug", help="show debug output", action="store_true", dest="debug") opts, pargs = parser.parse_args(args=sys.argv[1:])