From patchwork Wed Oct 17 14:34:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: texi2html: Add check for directory existence Date: Wed, 17 Oct 2012 14:34:15 -0000 From: Richard Purdie X-Patchwork-Id: 38233 Message-Id: <1350484455.2185.84.camel@ted> To: openembedded-core Without this, if configure fails, it won't be able to run again as the directory already exists. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb index 4b220f5..f168416 100644 --- a/meta/recipes-extended/texi2html/texi2html_5.0.bb +++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb @@ -16,7 +16,9 @@ inherit autotools gettext do_configure_prepend() { # Make a directory for the old gettext setup - mkdir ${S}/po + if [ ! -d ${S}/po ]; then + mkdir ${S}/po + fi } do_configure_append() {