mirror of
https://https.git.savannah.gnu.org/git/libtool.git
synced 2026-01-26 15:39:10 +00:00
m4/libtool.m4: Fixed AC_CHECK_PROG call
AC_CHECK_TOOL was changed to AC_CHECK_PROG however the arguments are different and this result is a value of ":". Change this to match the original intent. The lack of FILECMD was causing failures for mips64 builds as -m elf was being passed to LD which isn't supported on our targets.
This commit is contained in:
parent
d5769d0d39
commit
9a4a02615c
2
m4/libtool.m4
vendored
2
m4/libtool.m4
vendored
@ -8216,7 +8216,7 @@ AC_SUBST([DLLTOOL])
|
||||
# ----------------
|
||||
# Check for a file(cmd) program that can be used to detect file type and magic
|
||||
m4_defun([_LT_DECL_FILECMD],
|
||||
[AC_CHECK_PROG([FILECMD], [file], [:])
|
||||
[AC_CHECK_PROG([FILECMD], [file], [file], [:])
|
||||
_LT_DECL([], [FILECMD], [1], [A file(cmd) program that detects file types])
|
||||
])# _LD_DECL_FILECMD
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user