Fix a comment.

llvm-svn: 29590
This commit is contained in:
Reid Spencer 2006-08-09 19:40:13 +00:00
parent 2ddcf46717
commit 99112f11ec

View File

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