mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 07:38:49 -05:00
be a bit more verbose when things go wrong.
This commit is contained in:
parent
c59c429a69
commit
9a6df07d3d
@ -357,14 +357,14 @@ if ($gnulikebuild) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
logit "display lib/config$confsuffix.h";
|
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>) {
|
while (<F>) {
|
||||||
print if /^ *#/;
|
print if /^ *#/;
|
||||||
}
|
}
|
||||||
close(F);
|
close(F);
|
||||||
|
|
||||||
logit "display src/config$confsuffix.h";
|
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>) {
|
while (<F>) {
|
||||||
print if /^ *#/;
|
print if /^ *#/;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user