Commit 0939946a authored by Bruce Momjian's avatar Bruce Momjian

Add find_typedef comment.

parent 61d416e3
#!/bin/sh #!/bin/sh
# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.9 2008/03/18 22:45:11 momjian Exp $ # $PostgreSQL: pgsql/src/tools/find_typedef,v 1.10 2008/03/18 23:04:34 momjian Exp $
# This script attempts to find all typedef's in the postgres binaries # This script attempts to find all typedef's in the postgres binaries
# by using 'nm' to report all typedef debugging symbols. # by using 'nm' to report all typedef debugging symbols.
...@@ -36,7 +36,7 @@ then echo "Usage: $0 postgres_binary_directory [...]" 1>&2 ...@@ -36,7 +36,7 @@ then echo "Usage: $0 postgres_binary_directory [...]" 1>&2
fi fi
for DIR for DIR
do do # if objdump -W is recognized, only one line of error should appear
if [ `objdump -W 2>&1 | wc -l` -eq 1 ] if [ `objdump -W 2>&1 | wc -l` -eq 1 ]
then # Linux then # Linux
# unfortunately the Linux version doesn't show unreferenced typedefs # unfortunately the Linux version doesn't show unreferenced typedefs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment