diff options
author | Richard Purdie <richard@openedhand.com> | 2006-06-22 09:25:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-06-22 09:25:34 +0000 |
commit | 413265954d8bdad74f27789cffc4431eaf5f644b (patch) | |
tree | 7c8465840c7baea74a0419292ac8f16a9aa825c2 | |
parent | 51fecbddbb7dd4c9627807eb4b2295655cc86e8f (diff) | |
download | openembedded-core-413265954d8bdad74f27789cffc4431eaf5f644b.tar.gz openembedded-core-413265954d8bdad74f27789cffc4431eaf5f644b.tar.bz2 openembedded-core-413265954d8bdad74f27789cffc4431eaf5f644b.zip |
matchbox-poky: Fix postinst to cowkr without gconftool-2 being present on the build machine
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@490 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb index 98215ed517..041a6ea904 100644 --- a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb +++ b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky" LICENSE = "GPL" SECTION = "x11" RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" -PR = "r14" +PR = "r15" SRC_URI = "file://etc" S = ${WORKDIR} @@ -16,5 +16,5 @@ do_install() { pkg_postinst_matchbox-poky () { #!/bin/sh -e -gconftool-2 --config-source=xml::${IMAGE_ROOTFS}/${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/theme Clearlooks +gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/theme Clearlooks } |