Skip to content

Commit 8b71464

Browse files
sam-githubaddaleax
authored andcommitted
deps: remove OpenSSL git and travis configuration
OpenSSL is packaging its git and travis configuration files. Remove them, Node.js has its own. PR-URL: #25689 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
1 parent e28d891 commit 8b71464

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deps/openssl/config/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ COPTS = no-comp no-shared no-afalgeng
2727
# disable platform check in Configure
2828
NO_WARN_ENV = CONFIGURE_CHECKER_WARN=1
2929

30-
GITIGNORE = $(OPSSL_SRC)/.gitignore
3130
GENERATE = ./generate_gypi.pl
3231

3332
OPSSL_SRC = ../openssl
@@ -45,8 +44,9 @@ all: $(ARCHS) replace
4544

4645
# Configure and generate openssl asm files for each archs
4746
$(ARCHS):
48-
# Remove openssl .gitignore to follow nodejs .gitignore
49-
if [ -e $(GITIGNORE) ]; then rm $(GITIGNORE); fi
47+
# Remove openssl git and travis configuration, nodejs has its own (and they
48+
# should not have been packaged by upstream).
49+
rm -rf $(OPSSL_SRC)/.git* $(OPSSL_SRC)/.travis*
5050
cd $(OPSSL_SRC); $(NO_WARN_ENV) CC=$(CC) $(PERL) $(CONFIGURE) $(COPTS) $@;
5151
$(PERL) -w -I$(OPSSL_SRC) $(GENERATE) asm $@
5252
# Confgure asm_avx2 and generate upto avx2 support

0 commit comments

Comments
 (0)