diff options
author | Naohiro Tamura <naohirot@fujitsu.com> | 2021-02-16 12:01:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-21 18:35:30 -0500 |
commit | 3907c7bf0f82878363a8cccb83f7258b744c3f27 (patch) | |
tree | fbad9884f9eb2726784866704fdc4a5b5189a550 | |
parent | 831030740370defaab2457cc2600549f3e837f6e (diff) | |
download | glibc-3907c7bf0f82878363a8cccb83f7258b744c3f27.tar glibc-3907c7bf0f82878363a8cccb83f7258b744c3f27.tar.gz glibc-3907c7bf0f82878363a8cccb83f7258b744c3f27.tar.bz2 glibc-3907c7bf0f82878363a8cccb83f7258b744c3f27.zip |
configure: Remove obsolete AC_CHECK_TOOL_PREFIX
This patch removes obsolete AC_CHECK_TOOL_PREFIX.
It has been confirmed that AC_CHECK_TOOL_PREFIX is defined as NOP in
GNU 'autoconf' 2.69 [1], so we can safely remove it.
The 'configure' file has been deleted one blank line by the 'autoconf'
2.69 command .
[1] autoconf-2.69/share/autoconf/autoconf/programs.m4
181 # AC_CHECK_TOOL_PREFIX
182 # --------------------
183 AU_DEFUN([AC_CHECK_TOOL_PREFIX])
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -4732,7 +4732,6 @@ fi fi # These programs are version sensitive. - for ac_prog in gnumake gmake make do # Extract the first word of "$ac_prog", so it can be a program name with args. diff --git a/configure.ac b/configure.ac index b3f317f86b..1c82e3cd18 100644 --- a/configure.ac +++ b/configure.ac @@ -993,7 +993,6 @@ else fi # These programs are version sensitive. -AC_CHECK_TOOL_PREFIX AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version, [GNU Make[^0-9]*\([0-9][0-9.]*\)], [[4-9].* | [1-9][0-9]*], critic_missing="$critic_missing make") |