Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changing option character for defining Macros from -y to -D
git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1310 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
lhauch committed Aug 27, 2008
1 parent 7c8036b commit be9556b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Python/GenFds/GenFds.py
Expand Up @@ -256,7 +256,7 @@ def myOptionParser():
Parser.add_option("-i", "--FvImage", dest="uiFvName", help="Buld the FV image using the [FV] section named by UiFvName")
Parser.add_option("-b", "--buildtarget", action="store", type="choice", choices=['DEBUG','RELEASE'], dest="BuildTarget", help="Build TARGET is one of list: DEBUG, RELEASE.")
Parser.add_option("-t", "--tagname", action="store", type="string", dest="ToolChain", help="Using the tools: TOOL_CHAIN_TAG name to build the platform.")
Parser.add_option("-y", "--define", action="append", type="string", dest="Macros", help="Macro: \"Name [= Value]\".")
Parser.add_option("-D", "--define", action="append", type="string", dest="Macros", help="Macro: \"Name [= Value]\".")
(Options, args) = Parser.parse_args()
return Options

Expand Down

0 comments on commit be9556b

Please sign in to comment.