Fix a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-08-09 19:40:13 +00:00
parent a1ab92d8b7
commit a7465cafeb

View File

@ -5,14 +5,13 @@
# Synopsis: Generate a list of the libraries in which a symbol is defined or # Synopsis: Generate a list of the libraries in which a symbol is defined or
# referenced. # referenced.
# #
# Syntax: GenLibDeps.pl <directory_with_libraries_in_it> <symbol> # Syntax: findsym.pl <directory_with_libraries_in_it> <symbol>
# #
# Give first option a name. # Give first option a name.
my $Directory = $ARGV[0]; my $Directory = $ARGV[0];
my $Symbol = $ARGV[1]; my $Symbol = $ARGV[1];
# Open the directory and read its contents, sorting by name and differentiating # Open the directory and read its contents, sorting by name and differentiating
# by whether its a library (.a) or an object file (.o) # by whether its a library (.a) or an object file (.o)
opendir DIR,$Directory; opendir DIR,$Directory;