Skip to content

Commit 1a66d1b

Browse files
committed
configure: use "the C compiler" instead of $CC in messages
1 parent 5ea92e4 commit 1a66d1b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

configure

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18248,8 +18248,8 @@ else case e in #(
1824818248
esac
1824918249
fi
1825018250
CFLAGS="$CFLAGS $portable_flag"
18251-
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands $portable_flag" >&5
18252-
printf %s "checking whether $CC understands $portable_flag... " >&6; }
18251+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler understands $portable_flag" >&5
18252+
printf %s "checking whether the C compiler understands $portable_flag... " >&6; }
1825318253
if test ${sudo_cv_var_daportable+y}
1825418254
then :
1825518255
printf %s "(cached) " >&6
@@ -36685,8 +36685,8 @@ then :
3668536685
# The fallthrough attribute is supported by gcc 7.0 and clang 10.
3668636686
# This test relies on AC_LANG_WERROR.
3668736687
#
36688-
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports the fallthrough attribute" >&5
36689-
printf %s "checking whether $CC supports the fallthrough attribute... " >&6; }
36688+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler supports the fallthrough attribute" >&5
36689+
printf %s "checking whether the C compiler supports the fallthrough attribute... " >&6; }
3669036690
if test ${sudo_cv_var_fallthrough_attribute+y}
3669136691
then :
3669236692
printf %s "(cached) " >&6

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ case "$host" in
19501950
portable_flag="+DAportable"
19511951
])
19521952
CFLAGS="$CFLAGS $portable_flag"
1953-
AC_CACHE_CHECK([whether $CC understands $portable_flag],
1953+
AC_CACHE_CHECK([whether the C compiler understands $portable_flag],
19541954
[sudo_cv_var_daportable],
19551955
[AC_LINK_IFELSE(
19561956
[AC_LANG_PROGRAM([[]], [[]])],
@@ -4252,7 +4252,7 @@ AS_IF([test -n "$GCC"], [
42524252
# The fallthrough attribute is supported by gcc 7.0 and clang 10.
42534253
# This test relies on AC_LANG_WERROR.
42544254
#
4255-
AC_CACHE_CHECK([whether $CC supports the fallthrough attribute],
4255+
AC_CACHE_CHECK([whether the C compiler supports the fallthrough attribute],
42564256
[sudo_cv_var_fallthrough_attribute],
42574257
[AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
42584258
int main(int argc, char *argv[])

0 commit comments

Comments
 (0)