From 7f5bf370dbebb380897e5b27767a65ef91ec4344 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sat, 27 Oct 2012 21:21:09 +0000 Subject: [PATCH] util/fipslink.pl: fix typo. --- util/fipslink.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/fipslink.pl b/util/fipslink.pl index 2eb033b7c..4b0703641 100644 --- a/util/fipslink.pl +++ b/util/fipslink.pl @@ -46,7 +46,7 @@ system "$fips_link @ARGV"; die "First stage Link failure" if $? != 0; if (defined($ENV{FIPS_SIG})) { - system "$ENV{FIPS_SIG} $fips_target\n" + system "$ENV{FIPS_SIG} $fips_target" die "$ENV{FIPS_SIG} $fips_target failed" if $? != 0; exit; }