mirror of
https://github.com/curl/curl.git
synced 2026-04-19 03:21:19 +03:00
be a bit more verbose when things go wrong.
This commit is contained in:
parent
c59c429a69
commit
9a6df07d3d
1 changed files with 2 additions and 2 deletions
|
|
@ -357,14 +357,14 @@ if ($gnulikebuild) {
|
|||
}
|
||||
|
||||
logit "display lib/config$confsuffix.h";
|
||||
open(F, "lib/config$confsuffix.h") or die;
|
||||
open(F, "lib/config$confsuffix.h") or die "lib/config$confsuffix.h: $!";
|
||||
while (<F>) {
|
||||
print if /^ *#/;
|
||||
}
|
||||
close(F);
|
||||
|
||||
logit "display src/config$confsuffix.h";
|
||||
open(F, "src/config$confsuffix.h") or die;
|
||||
open(F, "src/config$confsuffix.h") or die "src/config$confsuffix.h: $!";
|
||||
while (<F>) {
|
||||
print if /^ *#/;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue