Skip to content

Commit

Permalink
build-binutils.py: Swap short flags for '--binutils-folder' and '--bu…
Browse files Browse the repository at this point in the history
…ild-folder'

'-b' is the build folder shorthand in build-llvm.py. Use it for
build-binutils.py as well, as people are more likely to change the build
folder than the source being used.

Signed-off-by: Nathan Chancellor <nathan@kernel.org>
  • Loading branch information
nathanchance committed Feb 27, 2023
1 parent d5b1cbc commit 888565c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-binutils.py
Expand Up @@ -11,7 +11,7 @@
LATEST_BINUTILS_RELEASE = (2, 40, 0)

parser = ArgumentParser()
parser.add_argument('-b',
parser.add_argument('-B',
'--binutils-folder',
help='''
By default, the script will download a copy of the binutils source in the src folder within
Expand All @@ -20,7 +20,7 @@
relative path.
''',
type=str)
parser.add_argument('-B',
parser.add_argument('-b',
'--build-folder',
help='''
By default, the script will create a "build/binutils" folder in the same folder as this
Expand Down

0 comments on commit 888565c

Please sign in to comment.