kbuild: update comment block of scripts/clang-version.sh
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 1 Mar 2019 07:10:20 +0000 (16:10 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 4 Mar 2019 13:34:54 +0000 (22:34 +0900)
Commit 469cb7376c06 ("kconfig: add CC_IS_CLANG and CLANG_VERSION")
changed the code, but missed to update the comment block.

The -p option was gone, and the output is 5-digit (or 6-digit when
Clang 10 is released).

Update the comment now.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/clang-version.sh

index e65fbc3079d47bec7474aba6f3fbf96d258f2d99..6fabf0695761977631bb044c1db44f2d464a45f8 100755 (executable)
@@ -1,14 +1,10 @@
 #!/bin/sh
 # SPDX-License-Identifier: GPL-2.0
 #
-# clang-version [-p] clang-command
-#
-# Prints the compiler version of `clang-command' in a canonical 4-digit form
-# such as `0500' for clang-5.0 etc.
-#
-# With the -p option, prints the patchlevel as well, for example `050001' for
-# clang-5.0.1 etc.
+# clang-version clang-command
 #
+# Print the compiler version of `clang-command' in a 5 or 6-digit form
+# such as `50001' for clang-5.0.1 etc.
 
 compiler="$*"