mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
PR 718: Configure not exiting with child status
If subcommand fails, just die. Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
This commit is contained in:
parent
9aaa7be8d4
commit
16caa9a43d
@ -2038,7 +2038,7 @@ EOF
|
||||
$make_targets .= " links" if $symlink;
|
||||
$make_targets .= " depend" if $depflags ne $default_depflags && $make_depend;
|
||||
$make_targets .= " gentests" if $symlink;
|
||||
(system $make_command.$make_targets) == 0 or exit $?
|
||||
(system $make_command.$make_targets) == 0 or die "make $make_targets failed"
|
||||
if $make_targets ne "";
|
||||
if ( $fipscanisteronly )
|
||||
{}
|
||||
|
Loading…
Reference in New Issue
Block a user