Attempting to fix some depend build issues on win32 by passing the list of files via stdin instead of on the command line. r=cls

This commit is contained in:
bryner%netscape.com 2002-02-16 11:21:57 +00:00
Родитель 56c873919e
Коммит 721e75b97e
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -35,7 +35,7 @@ $outfile = shift @ARGV;
@alldeps=();
# Parse dependency files
while ($line = <>) {
while ($line = <STDIN>) {
chomp $line;
($obj,$rest) = split /\s*:\s+/, $line, 2;
next if $obj eq '';

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

@ -1545,7 +1545,7 @@ ifdef PERL
# because it handles the case when header files are removed from the build.
# 'make' would complain that there is no way to build missing headers.
$(MDDEPDIR)/.all.pp: FORCE
@$(PERL) $(BUILD_TOOLS)/mddepend.pl $@ $(MDDEPEND_FILES)
@$(PERL) $(BUILD_TOOLS)/mddepend.pl $@ < $(MDDEPEND_FILES)
-include $(MDDEPDIR)/.all.pp
else
include $(MDDEPEND_FILES)