Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17ff7bc8 authored by Andre Braga's avatar Andre Braga
Browse files

Fix help text for '--no-clang' flag.

Setting the '--no-clang' flag makes the build use gcc/g++ instead of clang, contrary to current help text.

Bug: 238217027
Tag: #floss
Test: Manual - Run "./build.py --no-clang" and see that gcc/g++ is being run instead of clang.

Change-Id: I0f920141b7bda7ff586ba40d4a97dcefd7d2e7f8
parent f4054a26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -784,7 +784,7 @@ if __name__ == '__main__':
        help='Run bootstrap code to verify build env is ok to build.',
        default=False,
        action='store_true')
    parser.add_argument('--no-clang', help='Use clang compiler.', default=False, action='store_true')
    parser.add_argument('--no-clang', help='Don\'t use clang compiler.', default=False, action='store_true')
    parser.add_argument(
        '--no-strip', help='Skip stripping binaries during install.', default=False, action='store_true')
    parser.add_argument('--use', help='Set a specific use flag.')