Mercurial > mplayer.hg
changeset 20146:cfbb283087f0
Change == to = in test comparisons for better portability.
patch from NetBSD pkgsrc
author | diego |
---|---|
date | Tue, 10 Oct 2006 23:14:40 +0000 |
parents | d7fbd215d8c9 |
children | 8a760f0395d0 |
files | configure |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Tue Oct 10 22:17:03 2006 +0000 +++ b/configure Tue Oct 10 23:14:40 2006 +0000 @@ -6206,7 +6206,7 @@ elif cc_check -lavutil $_ld_lm ; then _libavutil_so=yes fi - if test "$_libavutil_so" == yes ; then + if test "$_libavutil_so" = yes ; then _res_comment="using libavutil.so, but static libavutil is recommended" fi fi @@ -6237,7 +6237,7 @@ elif cc_check -lavcodec $_ld_lm ; then _libavcodec_so=yes fi - if test "$_libavcodec_so" == yes ; then + if test "$_libavcodec_so" = yes ; then _res_comment="using libavcodec.so, but static libavcodec is recommended" fi fi @@ -6260,7 +6260,7 @@ elif cc_check $_ld_lm -lavformat ; then _libavformat_so=yes fi - if test "$_libavformat_so" == yes ; then + if test "$_libavformat_so" = yes ; then _res_comment="using libavformat.so, but static libavformat is recommended" fi fi