From 1e72605703c79620479ad90386f4be0d27ee10e9 Mon Sep 17 00:00:00 2001 From: Hassaan Pasha Date: Wed, 1 Apr 2020 10:28:34 +0500 Subject: [PATCH] doc: adjust paths in openssl maintenance guide The path for the crypto files in the `deps/openssl/openssl/` after running `cd deps/openssl/config && make` has been changed. The original path `deps/openssl/openssl/crypto/includes/internal/` now maps to `deps/openssl/openssl/includes/crypto`for the files that need to be added for the commit. PR-URL: https://github.com/nodejs/node/pull/32593 Reviewed-By: Sam Roberts Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat --- doc/guides/maintaining-openssl.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guides/maintaining-openssl.md b/doc/guides/maintaining-openssl.md index bc17c1cc208b5e..48dabd88d7eb69 100644 --- a/doc/guides/maintaining-openssl.md +++ b/doc/guides/maintaining-openssl.md @@ -83,8 +83,8 @@ Update all architecture dependent files. Do not forget to git add or remove files if they are changed before commit: ```sh % git add deps/openssl/config/archs -% git add deps/openssl/openssl/crypto/include/internal/bn_conf.h -% git add deps/openssl/openssl/crypto/include/internal/dso_conf.h +% git add deps/openssl/openssl/include/crypto/bn_conf.h +% git add deps/openssl/openssl/include/crypto/dso_conf.h % git add deps/openssl/openssl/include/openssl/opensslconf.h % git commit ``` @@ -98,8 +98,8 @@ The commit message can be (with the openssl version set to the relevant value): $ cd deps/openssl/config $ make $ git add deps/openssl/config/archs - $ git add deps/openssl/openssl/crypto/include/internal/bn_conf.h - $ git add deps/openssl/openssl/crypto/include/internal/dso_conf.h + $ git add deps/openssl/openssl/include/crypto/bn_conf.h + $ git add deps/openssl/openssl/include/crypto/dso_conf.h $ git add deps/openssl/openssl/include/openssl/opensslconf.h $ git commit ```