All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] openjade_1.3.2.bb: Create directory before installing a file to that location.
@ 2010-12-03  4:11 Graham Gower
  2010-12-03 13:47 ` Michael Smith
  0 siblings, 1 reply; 2+ messages in thread
From: Graham Gower @ 2010-12-03  4:11 UTC (permalink / raw)
  To: openembedded-devel

Fixes a breakage I introduced in last openjade commit.

Signed-off-by: Graham Gower <graham.gower@gmail.com>
---
 recipes/openjade/openjade_1.3.2.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/openjade/openjade_1.3.2.bb b/recipes/openjade/openjade_1.3.2.bb
index 6c69173..afd333a 100644
--- a/recipes/openjade/openjade_1.3.2.bb
+++ b/recipes/openjade/openjade_1.3.2.bb
@@ -44,7 +44,8 @@ do_install_append () {
 
        # The catalog must live in the sysroot and it must be there for
        # install-catalog to do its thing.
-       install -m 644 dsssl/catalog ${datadir}/sgml/openjade-${PV}
+       install -d ${datadir}/sgml/openjade-${PV}
+       install -m 644 dsssl/catalog ${datadir}/sgml/openjade-${PV}/catalog
        install-catalog --add ${sysconfdir}/sgml/openjade-${PV}.cat \
            ${datadir}/sgml/openjade-${PV}/catalog
 
-- 
1.7.1




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] openjade_1.3.2.bb: Create directory before installing a file to that location.
  2010-12-03  4:11 [PATCH] openjade_1.3.2.bb: Create directory before installing a file to that location Graham Gower
@ 2010-12-03 13:47 ` Michael Smith
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Smith @ 2010-12-03 13:47 UTC (permalink / raw)
  To: openembedded-devel

Graham Gower wrote:
> Fixes a breakage I introduced in last openjade commit.
> 
> Signed-off-by: Graham Gower <graham.gower@gmail.com>

Acked-by: Michael Smith <msmith@cbnco.com>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-03 13:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-03  4:11 [PATCH] openjade_1.3.2.bb: Create directory before installing a file to that location Graham Gower
2010-12-03 13:47 ` Michael Smith

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.