]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - tools/checkglobals
Merge changes from CUPS 1.4svn-r7696.
[thirdparty/cups.git] / tools / checkglobals
index c20d94f15dae2f3588d6b2cbe0c3b4b85be57909..4d15387eafb32078208179166fd9137eb49469ed 100755 (executable)
@@ -4,8 +4,6 @@
 #
 
 for file in *.o; do
-       echo -n "$file: "
-
        functions=""
 
        for function in `nm -g $file | grep "T " | awk '{print $3}'`; do
@@ -27,8 +25,8 @@ for file in *.o; do
        done
 
        if test -z "$functions"; then
-               echo "OK"
+               echo "$file: OK"
        else
-               echo $functions
+               echo "$file: $functions"
        fi
 done