Not part of build. Adding stdin to argv list.

This commit is contained in:
mcafee%netscape.com 2002-02-28 02:24:57 +00:00
Родитель cd5735d8ab
Коммит c55f248fcb
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -131,7 +131,10 @@ sub dir_for_required_component {
my $list_only_mode = 0;
my $opt_list_only;
{
PrintUsage() if $#ARGV == -1;
# Add stdin to the commandline. This makes commandline-only mode hang,
# call it a bug. Not sure how to get around this.
push (@ARGV, split(' ',<STDIN>));
PrintUsage() if !GetOptions('list-only' => \$opt_list_only);