aboutsummaryrefslogtreecommitdiff
path: root/deps/openssl/openssl/tools
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@iij.ad.jp>2015-06-12 00:00:05 +0900
committerShigeki Ohtsu <ohtsu@iij.ad.jp>2015-06-12 09:47:44 +0900
commitc21b24decf6fef3d808cdf1e2fa58be156898d65 (patch)
tree3c4cfc597b96b6fbb1c1f18bce4693396c97b32d /deps/openssl/openssl/tools
parenta6b8ee19b85bbd798510191f0aee596f36b909d2 (diff)
downloadandroid-node-v8-c21b24decf6fef3d808cdf1e2fa58be156898d65.tar.gz
android-node-v8-c21b24decf6fef3d808cdf1e2fa58be156898d65.tar.bz2
android-node-v8-c21b24decf6fef3d808cdf1e2fa58be156898d65.zip
deps: upgrade openssl sources to 1.0.2b
This just replaces all sources of openssl-1.0.2b.tar.gz into deps/openssl/openssl Fixes: https://github.com/nodejs/io.js/issues/1921 PR-URL: https://github.com/nodejs/io.js/pull/1950 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/openssl/openssl/tools')
-rw-r--r--deps/openssl/openssl/tools/Makefile2
-rw-r--r--deps/openssl/openssl/tools/c_rehash6
-rw-r--r--deps/openssl/openssl/tools/c_rehash.in6
3 files changed, 8 insertions, 6 deletions
diff --git a/deps/openssl/openssl/tools/Makefile b/deps/openssl/openssl/tools/Makefile
index bb6fb71f3e..c1a2f6bccf 100644
--- a/deps/openssl/openssl/tools/Makefile
+++ b/deps/openssl/openssl/tools/Makefile
@@ -44,6 +44,8 @@ tags:
errors:
+update: depend
+
depend:
dclean:
diff --git a/deps/openssl/openssl/tools/c_rehash b/deps/openssl/openssl/tools/c_rehash
index 4a0f0e10eb..6a27c02245 100644
--- a/deps/openssl/openssl/tools/c_rehash
+++ b/deps/openssl/openssl/tools/c_rehash
@@ -15,13 +15,13 @@ my $symlink_exists=eval {symlink("",""); 1};
my $removelinks = 1;
## Parse flags.
-while ( $ARGV[0] =~ '-.*' ) {
+while ( $ARGV[0] =~ /^-/ ) {
my $flag = shift @ARGV;
last if ( $flag eq '--');
- if ( $flag =~ /-old/) {
+ if ( $flag eq '-old') {
$x509hash = "-subject_hash_old";
$crlhash = "-hash_old";
- } elsif ( $flag =~ /-h/) {
+ } elsif ( $flag eq '-h') {
help();
} elsif ( $flag eq '-n' ) {
$removelinks = 0;
diff --git a/deps/openssl/openssl/tools/c_rehash.in b/deps/openssl/openssl/tools/c_rehash.in
index 887e927125..b086ff9cf0 100644
--- a/deps/openssl/openssl/tools/c_rehash.in
+++ b/deps/openssl/openssl/tools/c_rehash.in
@@ -15,13 +15,13 @@ my $symlink_exists=eval {symlink("",""); 1};
my $removelinks = 1;
## Parse flags.
-while ( $ARGV[0] =~ '-.*' ) {
+while ( $ARGV[0] =~ /^-/ ) {
my $flag = shift @ARGV;
last if ( $flag eq '--');
- if ( $flag =~ /-old/) {
+ if ( $flag eq '-old') {
$x509hash = "-subject_hash_old";
$crlhash = "-hash_old";
- } elsif ( $flag =~ /-h/) {
+ } elsif ( $flag eq '-h') {
help();
} elsif ( $flag eq '-n' ) {
$removelinks = 0;