diff options
Diffstat (limited to 'meta/packages/oh/qemu-config.bb')
-rw-r--r-- | meta/packages/oh/qemu-config.bb | 8 |
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 @@ | |||
1 | DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" | 1 | DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" |
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | RDEPENDS = "distcc task-poky-nfs-server fakeroot" | 3 | RDEPENDS = "distcc task-poky-nfs-server fakeroot" |
4 | PR = "r4" | 4 | PR = "r5" |
5 | 5 | ||
6 | SRC_URI = "file://distcc.sh \ | 6 | SRC_URI = "file://distcc.sh \ |
7 | file://anjuta-remote-run \ | ||
7 | file://exports" | 8 | file://exports" |
8 | 9 | ||
9 | S = "${WORKDIR}" | 10 | S = "${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 | } |