Files
meta-openembedded/meta-oe/recipes-connectivity/openssl/openssl-1.0.0d/debian/ca.patch
Khem Raj 11e4aa26d7 openssl-1.0.0: Add recipes for openssl_1.0.0d
Delete 1.0.0c recipes
Add patches from debian
Remove recipes for openssl-native use BBCLASSEXTEND instead
Drop libdeps-first.patch it would not let openssl-native build on ubuntu 11.10
Delete debian.patch, all changes in it are now provided by patches under debian dir

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-08-15 12:47:02 +02:00

21 lines
845 B
Diff

Index: openssl-0.9.8m/apps/CA.pl.in
===================================================================
--- openssl-0.9.8m.orig/apps/CA.pl.in 2006-04-28 00:28:51.000000000 +0000
+++ openssl-0.9.8m/apps/CA.pl.in 2010-02-27 00:36:51.000000000 +0000
@@ -65,6 +65,7 @@
foreach (@ARGV) {
if ( /^(-\?|-h|-help)$/ ) {
print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
+ print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
exit 0;
} elsif (/^-newcert$/) {
# create a certificate
@@ -165,6 +166,7 @@
} else {
print STDERR "Unknown arg $_\n";
print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
+ print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
exit 1;
}
}