Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-07 01:42:34 +0400
committerDr. Stephen Henson <steve@openssl.org>2011-05-07 01:42:34 +0400
commit524289baa514dbaa457c15af59f70d0669b9528f (patch)
tree4cb91657490bab41ac3532d3e917c5913d8e6cdf /util/fipsdist.pl
parent2677d856313e5af8b781af378b9cd3b35038ea33 (diff)
Get OPENSSL_FIPSSYMS from environment in fipsas.pl, include ppccap.c and .S
files in fipsdist.
Diffstat (limited to 'util/fipsdist.pl')
-rw-r--r--util/fipsdist.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/fipsdist.pl b/util/fipsdist.pl
index cb501e53e3..162f5d5944 100644
--- a/util/fipsdist.pl
+++ b/util/fipsdist.pl
@@ -17,7 +17,7 @@ foreach (@objlist) { $tarobjs{"$1.c"} = 1 if /([^\/]+).o$/};
$tarobjs{"ncbc_enc.c"} = 1;
$tarobjs{"mem_clr.c"} = 1;
-$tarobjs{"ppc_cap.c"} = 1;
+$tarobjs{"ppccap.c"} = 1;
foreach (split / /, $ENV{LINKDIRS} ) { $cdirs{$_} = 1 };
@@ -58,7 +58,7 @@ while (<STDIN>)
# Skip unused directories under crypto/
next if -d "crypto/$1" && !exists $cdirs{$1};
# Keep assembly language dir, Makefile or certain extensions
- if (!/\/asm\// && !/\/Makefile$/ && !/\.(in|pl|h)$/)
+ if (!/\/asm\// && !/\/Makefile$/ && !/\.(in|pl|h|S)$/)
{
# If C source file must be on list.
next if !/(\w+\.c)$/ || !exists $tarobjs{$1};