Minor
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 28 Aug 2012 23:08:36 +0000 (19:08 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 28 Aug 2012 23:08:36 +0000 (19:08 -0400)
src/Makefile.am
src/check-libstdc++.sh
src/check-static-inits.sh

index 166ba79..d7c4560 100644 (file)
@@ -252,7 +252,6 @@ dist_check_SCRIPTS = \
        check-exported-symbols.sh \
        check-includes.sh \
        check-internal-symbols.sh \
-       check-static-inits.sh \
        $(NULL)
 
 if HAVE_ICU
@@ -260,6 +259,11 @@ else
 dist_check_SCRIPTS += check-libstdc++.sh
 endif
 
+if HAVE_ICU_LE
+else
+dist_check_SCRIPTS += check-static-inits.sh
+endif
+
 TESTS = $(dist_check_SCRIPTS)
 TESTS_ENVIRONMENT = \
        srcdir="$(srcdir)" \
index 0521532..e7e0e29 100755 (executable)
@@ -27,7 +27,7 @@ for suffix in so dylib; do
        fi
 done
 if ! $tested; then
-       echo "check-internal-symbols.sh: libharfbuzz shared library not found; skipping test"
+       echo "check-libstdc++.sh: libharfbuzz shared library not found; skipping test"
        exit 77
 fi
 
index 1eceb1b..bb0a7ff 100755 (executable)
@@ -28,10 +28,10 @@ for obj in $OBJS; do
        fi
 done
 
-echo "Checking that no object file has lazy static C++ constructors/destructors"
+echo "Checking that no object file has lazy static C++ constructors/destructors or other such stuff"
 for obj in $OBJS; do
        if objdump -t "$obj" | grep '__c'; then
-               echo "Ouch, $obj has lazy static C++ constructors/destructors"
+               echo "Ouch, $obj has lazy static C++ constructors/destructors or other such stuff"
                stat=1
        fi
 done