Imported Upstream version 0.9.40
[platform/upstream/harfbuzz.git] / src / check-libstdc++.sh
index e7e0e29..27deb42 100755 (executable)
@@ -17,14 +17,14 @@ fi
 tested=false
 for suffix in so dylib; do
        so=.libs/libharfbuzz.$suffix
-       if test -f "$so"; then
-               echo "Checking that we are not linking to libstdc++"
-               if ldd $so | grep 'libstdc[+][+]'; then
-                       echo "Ouch, linked to libstdc++"
-                       stat=1
-               fi
-               tested=true
+       if ! test -f "$so"; then continue; fi
+
+       echo "Checking that we are not linking to libstdc++"
+       if ldd $so | grep 'libstdc[+][+]'; then
+               echo "Ouch, linked to libstdc++"
+               stat=1
        fi
+       tested=true
 done
 if ! $tested; then
        echo "check-libstdc++.sh: libharfbuzz shared library not found; skipping test"