Skip to content

Commit

Permalink
configure: fix --mode=all option
Browse files Browse the repository at this point in the history
Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
Message-Id: <20181218042548.21056-1-bhalevy@scylladb.com>
  • Loading branch information
bhalevy authored and avikivity committed Dec 20, 2018
1 parent b22990a commit dc0e6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def identify_best_dialect(dialects, compiler):
cpp_dialects = ['gnu++17', 'gnu++1z', 'gnu++14', 'gnu++1y']
args.cpp_dialect = identify_best_dialect(cpp_dialects, compiler=args.cxx)

MODES = seastar_cmake.SUPPORTED_MODES if args.mode is 'all' else [args.mode]
MODES = seastar_cmake.SUPPORTED_MODES if args.mode == 'all' else [args.mode]

# For convenience.
tr = seastar_cmake.translate_arg
Expand Down

0 comments on commit dc0e6a7

Please sign in to comment.