be a bit more verbose when things go wrong.
This commit is contained in:
Родитель
c59c429a69
Коммит
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 /^ *#/;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче