From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f195.google.com (mail-pf0-f195.google.com [209.85.192.195]) by mail.openembedded.org (Postfix) with ESMTP id 2EB2A77CCC for ; Tue, 3 Oct 2017 02:16:11 +0000 (UTC) Received: by mail-pf0-f195.google.com with SMTP id f84so7461582pfj.3 for ; Mon, 02 Oct 2017 19:16:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=RJqFA+PfiuGQjtESTQSaPU7lVTdHvrH4K/UXpidOtCA=; b=jGBG28+70s5Tt+4vqT2Ta/3ODXFTRAljjNQAkD/GKxvdX/2Vyb8NuzC/aTsdbT9dMS WGYPhIIm6Y8gG34xXnrFgBRGO6Jixq7twOoz2654GFswWwsrWZm1YTumCCexbgbY/BWf QiwUD/0aJ4tRnk5JrWjRfuBKev4hqqeWDP4dshN2bb8R3x5f9QeR9cANOcTMkSrRHSbh nOttUvAdMtdlCxzNGpKwfXOPsBn2v34tZfWv16vmg2pzksAeQxaxZL7X+Glx3bHV3jGB TOMZAWs5LJGaX/Y30Defk8zE71wdWJqx5YsN1SiVhsphGLKXHQtPx7IXZ//YQiFQPxnR KYaQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=RJqFA+PfiuGQjtESTQSaPU7lVTdHvrH4K/UXpidOtCA=; b=FpBVrwX/azXe0As2ZPrUjVJmIG82ebMCxSCbItYKKEL45Gsn0d7bn/+676XJ0B7Xii l7vLyPHT7On9xwDdsqXhfGLHcZxqPsQmTIkEDBraCl+UhWwXcQ2eZX7EB+f3I0UbPn6s X9TM3h5LxyigEyiLyYpq8oHItfLdPrgFYZ/hjPqU2vR3BZATS3O56rVbwxSBnaamS4ud rFyv4sWDT26Uu4hZKN6ro/6P8GFk4htvle16YETLW9J69V6ZTs0WQG1DJWrCPQfR+XDb 8puiYPMCf2o32uI93udOG0x4VaIwS/Rhjw/8zOv9ShWxjFkWT9viHn39YbrF0nqEwMtQ awyw== X-Gm-Message-State: AHPjjUiTG2ts+N1Tqs+YxWSaKw3rZx1Vv44pMy1YsD714UAiU9BLd2Yt UcZyI83WTF+ttJIbnZMBUiJi0w== X-Google-Smtp-Source: AOwi7QCQfMGvMfV9NscvI8Po6t79c+hNKVlTKCTQU8/yVqlSgrAmzgwVq6G0156uKMNM7CWlmOcQFA== X-Received: by 10.101.86.133 with SMTP id v5mr14213137pgs.249.1506996972875; Mon, 02 Oct 2017 19:16:12 -0700 (PDT) Received: from e6520.guest-wifi.scl.liberty.com ([4.16.80.121]) by smtp.gmail.com with ESMTPSA id 20sm19427476pft.109.2017.10.02.19.16.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 02 Oct 2017 19:16:11 -0700 (PDT) From: Andre McCurdy To: openembedded-core@lists.openembedded.org Date: Mon, 2 Oct 2017 19:15:59 -0700 Message-Id: <1506996960-17686-2-git-send-email-armccurdy@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1506996960-17686-1-git-send-email-armccurdy@gmail.com> References: <1506996960-17686-1-git-send-email-armccurdy@gmail.com> Subject: [morty][PATCH v2 1/2] coreutils_6.9: Disable broken man pages X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 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: Tue, 03 Oct 2017 02:16:12 -0000 From: Richard Purdie These are generated from --help output of the host tools which is clearly incorrect, particularly given the older nature of this recipe. Simply disable them entirely. Signed-off-by: Richard Purdie Cherry-pick from meta-gplv2: http://git.yoctoproject.org/cgit/cgit.cgi/meta-gplv2/commit/?id=46349e1a8734fb94a04bf7c234c01fa175333238 Signed-off-by: Andre McCurdy --- .../coreutils/coreutils-6.9/no-man.patch | 21 +++++++++++++++++++++ meta/recipes-core/coreutils/coreutils_6.9.bb | 1 + 2 files changed, 22 insertions(+) create mode 100644 meta/recipes-core/coreutils/coreutils-6.9/no-man.patch diff --git a/meta/recipes-core/coreutils/coreutils-6.9/no-man.patch b/meta/recipes-core/coreutils/coreutils-6.9/no-man.patch new file mode 100644 index 0000000..6767d7d --- /dev/null +++ b/meta/recipes-core/coreutils/coreutils-6.9/no-man.patch @@ -0,0 +1,21 @@ +Disable manpages for coreutils. These are generated by running the host version --help +which is going to give incorrect results so its better simply not to do this at all. + +RP 2017/3/9 +Upstream-Status: Inappropriate [OE cross compile specific hack] + +Signed-off-by: Andre McCurdy + +Index: coreutils-6.9/Makefile.am +=================================================================== +--- coreutils-6.9.orig/Makefile.am ++++ coreutils-6.9/Makefile.am +@@ -17,7 +17,7 @@ + # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + # 02110-1301, USA. + +-SUBDIRS = lib src doc man po tests ++SUBDIRS = lib src doc po tests + EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \ + .gitignore \ + .hgignore \ diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb index 35700a3..6bcf8de 100644 --- a/meta/recipes-core/coreutils/coreutils_6.9.bb +++ b/meta/recipes-core/coreutils/coreutils_6.9.bb @@ -26,6 +26,7 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ file://coreutils-fix-texinfo.patch \ file://fix_for_manpage_building.patch \ file://loadavg.patch \ + file://no-man.patch \ " SRC_URI[md5sum] = "c9607d8495f16e98906e7ed2d9751a06" -- 1.9.1