Add ignored file. Print module error info to stderr, not stdout.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3863 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-03-30 13:09:22 +00:00
parent 4f878ffa31
commit 1b9f95a7d1
2 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,5 @@
Makefile
Makefile.in
finance-quote-helper
update-finance-quote
histprices

View File

@ -107,14 +107,14 @@ sub check_modules {
return unless @missing;
print "\n";
print "You need to install the following Perl modules:\n";
print STDERR "\n";
print STDERR "You need to install the following Perl modules:\n";
foreach my $mod (@missing) {
print " ".$mod."\n";
print STDERR " ".$mod."\n";
}
print "\n";
print "Run 'update-finance-quote' as root to install them.\n";
print STDERR "\n";
print STDERR "Run 'update-finance-quote' as root to install them.\n";
exit 1
}