Make autogen.pl abort if one of the scripts it runs fails
This commit was SVN r27000.
Этот коммит содержится в:
родитель
7b0af8a760
Коммит
0715e41ff3
@ -1106,7 +1106,10 @@ foreach my $s (@scripts) {
|
||||
print "Cannot find executable $s!\nAborting.\n";
|
||||
my_exit(1);
|
||||
}
|
||||
system($s);
|
||||
if (system($s) != 0) {
|
||||
print "Script failed: $s\n";
|
||||
my_exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user