From patchwork Mon Feb 8 19:50:12 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [oe] mc 4.6.2: fix do_configure error on missing config.rpath Date: Mon, 08 Feb 2010 09:50:12 -0000 From: =?utf-8?b?UGV0ciDFoHRldGlhciA8eW5lenpAdHJ1ZS5jej4=?= X-Patchwork-Id: 1548 Message-Id: <1265658612-19262-1-git-send-email-ynezz@true.cz> To: openembedded-devel@lists.openembedded.org This patch fixes configure error, complaining about missing config.rpath file which gets deleted by autofoo in recipe, so to avoid error bellow we create empty file, making configure happy. configure.ac:104: required file `config/config.rpath' not found [...snip...] autoreconf: automake failed with exit status: 1 FATAL: autoreconf execution failed. Signed-off-by: Petr Štetiar --- recipes/mc/mc_4.6.2.bb | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/recipes/mc/mc_4.6.2.bb b/recipes/mc/mc_4.6.2.bb index 387187d..3eb6bf3 100644 --- a/recipes/mc/mc_4.6.2.bb +++ b/recipes/mc/mc_4.6.2.bb @@ -1,5 +1,5 @@ require mc.inc -PR = "r4" +PR = "r5" HOMEPAGE = "http://www.midnight-commander.org/" # most of these fixes were copied from openSUSE Factory. @@ -86,4 +86,6 @@ AUTOFOO="config.guess config.rpath config.sub depcomp install-sh missing mkinsta for i in ${AUTOFOO}; do rm config/${i} done + # raises error if it's not found + touch config/config.rpath }