summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-28 17:43:05 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-28 17:55:08 +0900
commit3da3c2747feb0c4a122182792150a49012bed1a6 (patch)
tree9d093e64f340fdcabda5defff9f7b87e33f14c29 /libexec
parentd6a94a0c4b416d4e4a5b25ab8d5482bad00f9765 (diff)
fixup d6a94a0c4b416d4e4a5b25ab8d5482bad00f9765
Diffstat (limited to 'libexec')
-rwxr-xr-xlibexec/racc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/racc b/libexec/racc
index 3132f4e2a6..0f0f642cd6 100755
--- a/libexec/racc
+++ b/libexec/racc
@@ -95,13 +95,13 @@ def main
exit 0
}
parser.on('--runtime-version', 'Prints runtime version and quit.') {
- printf "racc runtime version %s (rev. %s); %s\n",
+ printf "racc runtime version %s; %s\n",
Racc::Parser::Racc_Runtime_Version,
if Racc::Parser.racc_runtime_type == 'ruby'
- sprintf('ruby core version %s (rev. %s)',
+ sprintf('ruby core version %s',
Racc::Parser::Racc_Runtime_Core_Version_R)
else
- sprintf('c core version %s (rev. %s)',
+ sprintf('c core version %s',
Racc::Parser::Racc_Runtime_Core_Version_C)
end
exit 0