From 08631a6a938ad8767fb1e65751d75f3a78062bbd Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 11 Aug 2014 18:03:51 +0200 Subject: [PATCH] Fixup qb/config.libs.sh - change == to = for comparisons --- qb/config.libs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 4c602f7364..5b4b719c09 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -161,11 +161,11 @@ check_lib COREAUDIO "-framework AudioUnit" AudioUnitInitialize check_pkgconf SDL sdl 1.2.10 check_pkgconf SDL2 sdl2 2.0.0 -if [ "$HAVE_SDL2" == 'yes' ]; then - if [ "$HAVE_SDL2" == 'yes' ] && [ "$HAVE_SDL" == 'yes' ]; then +if [ "$HAVE_SDL2" = 'yes' ]; then + if [ "$HAVE_SDL2" = 'yes' ] && [ "$HAVE_SDL" = 'yes' ]; then echo "SDL drivers will be replaced by SDL2 ones." HAVE_SDL=no - elif [ "$HAVE_SDL2" == 'no' ]; then + elif [ "$HAVE_SDL2" = 'no' ]; then echo "SDL2 not found, skipping." HAVE_SDL2=no fi