diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-20 13:19:36 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 21:08:02 +0100 |
commit | 93dbe8d9f7ab7310a82e800effaff0c1a298965c (patch) | |
tree | 34bdd7f1da7cd9884544243a630d0830c608eef6 /meta | |
parent | f9c2ff4ef0a059944df378ce23a9a28556cc59da (diff) | |
download | poky-93dbe8d9f7ab7310a82e800effaff0c1a298965c.tar.gz |
libtirpc: Fix owner/group of /etc/netconfig
(From OE-Core rev: 25b50d2e576e641a57823eb7bf7e2cd28443f0b7)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb b/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb index 61dab95fa4..6170e6547c 100644 --- a/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb +++ b/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb | |||
@@ -7,7 +7,7 @@ BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784" | |||
7 | LICENSE = "BSD" | 7 | LICENSE = "BSD" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=1c32c8e351f97e43e1ad6cf7f62de3bf \ | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=1c32c8e351f97e43e1ad6cf7f62de3bf \ |
9 | file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24" | 9 | file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24" |
10 | PR = "r0" | 10 | PR = "r1" |
11 | 11 | ||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/libtirpc/libtirpc-${PV}.tar.bz2" | 12 | SRC_URI = "${SOURCEFORGE_MIRROR}/libtirpc/libtirpc-${PV}.tar.bz2" |
13 | 13 | ||
@@ -15,3 +15,7 @@ SRC_URI[md5sum] = "d77eb15f464bf9d6e66259eaf78b2a4e" | |||
15 | SRC_URI[sha256sum] = "ea77cadd63941fc4edbee7863d2c7094e6a18263d2a2c8922319aee91352ff41" | 15 | SRC_URI[sha256sum] = "ea77cadd63941fc4edbee7863d2c7094e6a18263d2a2c8922319aee91352ff41" |
16 | 16 | ||
17 | inherit autotools | 17 | inherit autotools |
18 | |||
19 | do_install_append() { | ||
20 | chown root:root ${D}${sysconfdir}/netconfig | ||
21 | } | ||