summaryrefslogtreecommitdiffstats
path: root/meta/packages/oh/qemu-config.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-01-22 13:47:08 +0000
committerRichard Purdie <richard@openedhand.com>2008-01-22 13:47:08 +0000
commit10390fa1fb5669f2d8e7105ec2d7ecbdf12a1d1e (patch)
tree1e4152ba8df4b2fdbb7be96c7b80ccc674ee4135 /meta/packages/oh/qemu-config.bb
parent0b465bff69c9674d166f3f75f2862ab055577339 (diff)
downloadpoky-10390fa1fb5669f2d8e7105ec2d7ecbdf12a1d1e.tar.gz
qemu-config: Add anjuta-remote-run script
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3568 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r--meta/packages/oh/qemu-config.bb8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb
index 381d3bb671..299aea2a76 100644
--- a/meta/packages/oh/qemu-config.bb
+++ b/meta/packages/oh/qemu-config.bb
@@ -1,9 +1,10 @@
1DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" 1DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
2LICENSE = "GPL" 2LICENSE = "GPL"
3RDEPENDS = "distcc task-poky-nfs-server fakeroot" 3RDEPENDS = "distcc task-poky-nfs-server fakeroot"
4PR = "r4" 4PR = "r5"
5 5
6SRC_URI = "file://distcc.sh \ 6SRC_URI = "file://distcc.sh \
7 file://anjuta-remote-run \
7 file://exports" 8 file://exports"
8 9
9S = "${WORKDIR}" 10S = "${WORKDIR}"
@@ -15,5 +16,8 @@ do_install() {
15 install -d ${D}${sysconfdir}/profile.d 16 install -d ${D}${sysconfdir}/profile.d
16 17
17 install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ 18 install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/
18 install -m 0644 exports ${D}${sysconfdir} 19 install -m 0644 exports ${D}${sysconfdir}/
20
21 install -d ${D}${bindir}
22 install -m 0755 anjuta-remote-run ${D}${bindir}/
19} 23}