Kaydet (Commit) c51b68dd authored tarafından Luboš Luňák's avatar Luboš Luňák

clang version in configure output without spaces

Call me pedantic.

Change-Id: I96b8b7ef511508da0df75589475eaf13d639a7c9
Reviewed-on: https://gerrit.libreoffice.org/70365
Tested-by: Jenkins
Reviewed-by: 's avatarLuboš Luňák <l.lunak@collabora.com>
üst f5edd93a
...@@ -3636,7 +3636,7 @@ if test "$COM_IS_CLANG" = TRUE; then ...@@ -3636,7 +3636,7 @@ if test "$COM_IS_CLANG" = TRUE; then
else else
my_args="-E -P" my_args="-E -P"
fi fi
clang_version=`echo __clang_major__.__clang_minor__.__clang_patchlevel__ | $CC_PLAIN $my_args -` clang_version=`echo __clang_major__.__clang_minor__.__clang_patchlevel__ | $CC_PLAIN $my_args - | sed 's/ //g'`
CLANGVER=`echo $clang_version \ CLANGVER=`echo $clang_version \
| $AWK -F. '{ print \$1*10000+(\$2<100?\$2:99)*100+(\$3<100?\$3:99) }'` | $AWK -F. '{ print \$1*10000+(\$2<100?\$2:99)*100+(\$3<100?\$3:99) }'`
if test "$CLANGVER" -ge 50002; then if test "$CLANGVER" -ge 50002; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment