diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-02-05 09:46:51 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-02-23 09:31:04 +0200 |
commit | 702892b19b022a42183170314d5ba9f2774baf7c (patch) | |
tree | 795a73d491330bcae3c44ee7bab5fab40b88e11b /main/openssl/0002-busybox-basename.patch | |
parent | de31a22f0f21b10ef4f8f4d5fc8597a8b2aff497 (diff) | |
download | aports-702892b19b022a42183170314d5ba9f2774baf7c.tar.bz2 aports-702892b19b022a42183170314d5ba9f2774baf7c.tar.xz |
main/openssl: upgrade to 1.0.2 and rebase all patches
Diffstat (limited to 'main/openssl/0002-busybox-basename.patch')
-rw-r--r-- | main/openssl/0002-busybox-basename.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/main/openssl/0002-busybox-basename.patch b/main/openssl/0002-busybox-basename.patch new file mode 100644 index 0000000000..9bbc284f31 --- /dev/null +++ b/main/openssl/0002-busybox-basename.patch @@ -0,0 +1,34 @@ +From c276ddc394dd402327603959271eac63a2e1ec1c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Timo=20Ter=C3=A4s?= <timo.teras@iki.fi> +Date: Thu, 5 Feb 2015 08:40:00 +0200 +Subject: [PATCH] busybox basename + +--- + Makefile.org | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.org b/Makefile.org +index b7a3f96..035fa83 100644 +--- a/Makefile.org ++++ b/Makefile.org +@@ -649,7 +649,7 @@ install_docs: + filecase=-i; \ + esac; \ + set -e; for i in doc/apps/*.pod; do \ +- fn=`basename $$i .pod`; \ ++ fn=`basename $$i .pod || true`; \ + sec=`$(PERL) util/extract-section.pl 1 < $$i`; \ + echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ + (cd `$(PERL) util/dirname.pl $$i`; \ +@@ -666,7 +666,7 @@ install_docs: + done); \ + done; \ + set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \ +- fn=`basename $$i .pod`; \ ++ fn=`basename $$i .pod || true`; \ + sec=`$(PERL) util/extract-section.pl 3 < $$i`; \ + echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ + (cd `$(PERL) util/dirname.pl $$i`; \ +-- +2.2.2 + |