Improve POSIX shell portability (#3326)

This commit is contained in:
Ryo ONODERA 2023-01-10 15:34:16 +09:00 committed by GitHub
parent 5825f01e02
commit 7e974cd929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -8136,7 +8136,7 @@ printf %s "checking ffmpeg packages... " >&6; }
av_pkg="$av_pkg libavutil"
fi
if test "x$av_pkg" == "x"; then
if test "x$av_pkg" = "x"; then
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none detected (check the prefix)! **" >&5
printf "%s\n" "none detected (check the prefix)! **" >&6; }
else

View File

@ -1379,7 +1379,7 @@ AC_ARG_ENABLE(ffmpeg,
av_pkg="$av_pkg libavutil"
fi
if test "x$av_pkg" == "x"; then
if test "x$av_pkg" = "x"; then
AC_MSG_RESULT([none detected (check the prefix)! **])
else
AC_MSG_RESULT([$av_pkg])