Commit 9a6df07d authored by Guenter Knauf's avatar Guenter Knauf
Browse files

be a bit more verbose when things go wrong.

parent c59c429a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 /^ *#/;
}