From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-la0-f47.google.com ([209.85.215.47]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1Ts0DA-0006mB-SR for openembedded-core@lists.openembedded.org; Mon, 07 Jan 2013 01:05:05 +0100 Received: by mail-la0-f47.google.com with SMTP id fh20so13647625lab.6 for ; Sun, 06 Jan 2013 15:49:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=mJ4/NkTDXULMg+eZbBbylMOvtHVcwhuZCsX/ArZeOLA=; b=LwkyT+QpqCv+4rccnxV6xXKMKXOnm7Ov7lCn2fXRl5hEYUkzbVM1oQZ8AxKf6vOXAU 4RfmPwwfqn0ahMbt5T24ALgdhrMkT9F9tFZphwGOSldPVLsOD+RDbla6eMsvYGLLZm/y uHARMLRIrzD7dKOzRf6bx59SMo6G3XJxWOaDgjf41dT9fsrTGCW8NONNMelwyy52Ni+C pxymKaMeEugVQMow4wg/SanOvF59LdhmAfraufAFrtjSHbXPOKP9eoBKWjmMTHKrMY2t wXsUa9RHZOsnfNjp777yb4VgVEyQUivgXPhUWmQomsd4DGMdqQjbrLlxBBjuYxm8pdrX NGXQ== X-Received: by 10.152.125.7 with SMTP id mm7mr56919791lab.2.1357516196471; Sun, 06 Jan 2013 15:49:56 -0800 (PST) Received: from prime (a91-153-5-18.elisa-laajakaista.fi. [91.153.5.18]) by mx.google.com with ESMTPS id v6sm20242889lbf.11.2013.01.06.15.49.53 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 Jan 2013 15:49:55 -0800 (PST) Received: from cazfi by prime with local (Exim 4.80) (envelope-from ) id 1TrzyL-0001PK-UL; Mon, 07 Jan 2013 01:49:45 +0200 From: Marko Lindqvist To: openembedded-core@lists.openembedded.org Date: Mon, 7 Jan 2013 01:49:28 +0200 Message-Id: <1357516181-5358-3-git-send-email-cazfi74@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1357516181-5358-2-git-send-email-cazfi74@gmail.com> References: <1357516181-5358-1-git-send-email-cazfi74@gmail.com> <1357516181-5358-2-git-send-email-cazfi74@gmail.com> Subject: [PATCH v2 02/15] libtool: remove help2man dependency X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2013 00:05:05 -0000 Remove manpage creation. It wasn't working because of help2man missing when libtool is being built. This attempt to create manpages without help2man turns from no-op to hard error with automake-1.13. Removed prefix-manpage-fix.patch as only code it touched is being removed by new dont-depend-on-help2man.patch Signed-off-by: Marko Lindqvist --- meta/recipes-devtools/libtool/libtool-2.4.2.inc | 4 ++-- .../libtool/libtool/dont-depend-on-help2man.patch | 24 ++++++++++++++++++++ .../libtool/libtool/prefix-manpage-fix.patch | 21 ----------------- 3 files changed, 26 insertions(+), 23 deletions(-) create mode 100644 meta/recipes-devtools/libtool/libtool/dont-depend-on-help2man.patch delete mode 100644 meta/recipes-devtools/libtool/libtool/prefix-manpage-fix.patch diff --git a/meta/recipes-devtools/libtool/libtool-2.4.2.inc b/meta/recipes-devtools/libtool/libtool-2.4.2.inc index 12a783a..bb4ddf0 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.2.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.2.inc @@ -8,11 +8,10 @@ LICENSE = "GPLv2 & LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06" -INC_PR = "r5" +INC_PR = "r6" SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ file://trailingslash.patch \ - file://prefix-manpage-fix.patch \ file://rename-with-sysroot.patch \ file://use-sysroot-in-libpath.patch \ file://fix-final-rpath.patch \ @@ -20,6 +19,7 @@ SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ file://fix-rpath.patch \ file://respect-fstack-protector.patch \ file://norm-rpath.patch \ + file://dont-depend-on-help2man.patch \ " SRC_URI[md5sum] = "d2f3b7d4627e69e13514a40e72a24d50" diff --git a/meta/recipes-devtools/libtool/libtool/dont-depend-on-help2man.patch b/meta/recipes-devtools/libtool/libtool/dont-depend-on-help2man.patch new file mode 100644 index 0000000..67552b0 --- /dev/null +++ b/meta/recipes-devtools/libtool/libtool/dont-depend-on-help2man.patch @@ -0,0 +1,24 @@ +Upstream-Status: Inappropriate + +Signed-off-by: Marko Lindqvist +diff -Nurd libtool-2.4.2/Makefile.am libtool-2.4.2/Makefile.am +--- libtool-2.4.2/Makefile.am 2011-10-17 13:17:04.000000000 +0300 ++++ libtool-2.4.2/Makefile.am 2013-01-01 22:03:36.865586811 +0200 +@@ -327,17 +327,6 @@ + cd $(srcdir)/doc && \ + $(MAKEINFO) --no-headers $(MAKEINFOFLAGS) -o notes.txt notes.texi + +-dist_man1_MANS = $(srcdir)/doc/libtool.1 $(srcdir)/doc/libtoolize.1 +-MAINTAINERCLEANFILES += $(dist_man1_MANS) +-update_mans = \ +- PATH=".$(PATH_SEPARATOR)$$PATH"; export PATH; \ +- $(HELP2MAN) --output=$@ +-$(srcdir)/doc/libtool.1: $(srcdir)/$(auxdir)/ltmain.sh +- $(update_mans) --help-option=--help-all libtool +-$(srcdir)/doc/libtoolize.1: $(srcdir)/libtoolize.in +- $(update_mans) libtoolize +- +- + ## ------------- ## + ## Installation. ## + ## ------------- ## diff --git a/meta/recipes-devtools/libtool/libtool/prefix-manpage-fix.patch b/meta/recipes-devtools/libtool/libtool/prefix-manpage-fix.patch deleted file mode 100644 index 879778c..0000000 --- a/meta/recipes-devtools/libtool/libtool/prefix-manpage-fix.patch +++ /dev/null @@ -1,21 +0,0 @@ -Upstream-Status: Inappropriate [embedded specific] - -For cross environment, it not possible to run the generated executable. -nstead use the build version of libtool to generate the man pages. - -Date: 2010/07/09 -Signed-Off-By: Nitin A Kamble - -Index: libtool-2.4.2/Makefile.am -=================================================================== ---- libtool-2.4.2.orig/Makefile.am -+++ libtool-2.4.2/Makefile.am -@@ -333,7 +333,7 @@ update_mans = \ - PATH=".$(PATH_SEPARATOR)$$PATH"; export PATH; \ - $(HELP2MAN) --output=$@ - $(srcdir)/doc/libtool.1: $(srcdir)/$(auxdir)/ltmain.sh -- $(update_mans) --help-option=--help-all libtool -+ $(update_mans) --help-option=--help-all ${build_alias}-libtool - $(srcdir)/doc/libtoolize.1: $(srcdir)/libtoolize.in - $(update_mans) libtoolize - -- 1.7.10.4