1
0
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:
Gunter Knauf 2004-07-05 23:35:49 +00:00
parent c59c429a69
commit 9a6df07d3d

View File

@ -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 /^ *#/;
}