diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-08-28 12:23:12 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-04 11:03:56 +0100 |
commit | df15a4c914177024f1825aacb4701fd232e1dd58 (patch) | |
tree | 82e7f832e4fa30f388883afd553453217397e7f3 /meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch | |
parent | 352d1a4bfdb687bc0d14c74d76e538eeac88ab5d (diff) | |
download | poky-df15a4c914177024f1825aacb4701fd232e1dd58.tar.gz |
openssl: rename openssl 1.0.x to openssl10 and make openssl 1.1.x the default version
I believe the time has come to do this: openssl 1.0 upstream support stops at the end
of 2019, and we do not want a situation where a supported YP release contains an
unsupported version of a critical security component.
Openssl 1.0 can still be utilized by depending on 'openssl10' recipe.
(From OE-Core rev: 876466145f2da93757ba3f92177d0f959f5fe975)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch b/meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch new file mode 100644 index 0000000000..3f7d649955 --- /dev/null +++ b/meta/recipes-connectivity/openssl/openssl10/0001-allow-manpages-to-be-disabled.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From e1c39b80b01d4d18feeadfdc6e45a3e1dd110634 Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Fri, 27 Jul 2018 21:41:06 +0000 | ||
4 | Subject: [PATCH] allow manpages to be disabled | ||
5 | |||
6 | Define OE_DISABLE_MANPAGES (via environment or the make command line) | ||
7 | to skip creation and installation of manpages. | ||
8 | |||
9 | Upstream-Status: Inappropriate [configuration] | ||
10 | |||
11 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
12 | --- | ||
13 | Makefile.org | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/Makefile.org b/Makefile.org | ||
17 | index ed98d2a..747d8cb 100644 | ||
18 | --- a/Makefile.org | ||
19 | +++ b/Makefile.org | ||
20 | @@ -549,7 +549,7 @@ dist: | ||
21 | @$(MAKE) SDIRS='$(SDIRS)' clean | ||
22 | @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' $(DISTTARVARS) tar | ||
23 | |||
24 | -install: all install_docs install_sw | ||
25 | +install: all $(if $(OE_DISABLE_MANPAGES),,install_docs) install_sw | ||
26 | |||
27 | install_sw: | ||
28 | @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ | ||
29 | -- | ||
30 | 1.9.1 | ||
31 | |||