From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from smtprelay02.ispgateway.de ([80.67.18.14]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1UfWtJ-0006bZ-65 for ptxdist@pengutronix.de; Thu, 23 May 2013 16:53:21 +0200 Received: from [78.47.165.117] (helo=regiomontanus.your-server.de) by smtprelay02.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1UfWtI-0005EW-FS for ptxdist@pengutronix.de; Thu, 23 May 2013 16:53:16 +0200 From: Bernhard Walle Date: Thu, 23 May 2013 16:53:13 +0200 Message-Id: <1369320793-26283-1-git-send-email-bernhard@bwalle.de> Subject: [ptxdist] [PATCH] openssl: Fix build with Perl 5.18.0 Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de My Arch Linux updated to host-perl 5.18.0. Building openssl with that version fails when creating the manpages: c_rehash.pod around line 45: You forgot a '=back' before '=head1' c_rehash.pod around line 49: =back without =over Since we don't need that manpages, install openssl with "make install_sw" instead of "make install" which avoids building the manpages. Signed-off-by: Bernhard Walle --- rules/openssl.make | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/openssl.make b/rules/openssl.make index f448e7c..67ad7d3 100644 --- a/rules/openssl.make +++ b/rules/openssl.make @@ -70,6 +70,8 @@ OPENSSL_CONF_OPT := \ --prefix=/usr \ --openssldir=/usr/lib/ssl \ --install_prefix=$(OPENSSL_PKGDIR) +OPENSSL_INSTALL_OPT := \ + install_sw ifdef PTXCONF_OPENSSL_SHARED OPENSSL_CONF_OPT += shared -- 1.8.2.3 -- ptxdist mailing list ptxdist@pengutronix.de