diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 18:33:03 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 18:33:03 +0000 |
commit | 66b6014139d4e4c0b0c2e21c6a08cc31c31652b0 (patch) | |
tree | 03813b44a50e84ff3998b5610cbc5350437d4ac1 /meta/packages/fakeroot/fakeroot-native_1.9.4.bb | |
parent | 8bc4105ddff851fc0e2c716d677b52236f6c3209 (diff) | |
download | poky-66b6014139d4e4c0b0c2e21c6a08cc31c31652b0.tar.gz |
fakeroot: Clean up and convert to BBCLASSEXTEND
Diffstat (limited to 'meta/packages/fakeroot/fakeroot-native_1.9.4.bb')
-rw-r--r-- | meta/packages/fakeroot/fakeroot-native_1.9.4.bb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/packages/fakeroot/fakeroot-native_1.9.4.bb b/meta/packages/fakeroot/fakeroot-native_1.9.4.bb deleted file mode 100644 index 77d6f58651..0000000000 --- a/meta/packages/fakeroot/fakeroot-native_1.9.4.bb +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | require fakeroot_${PV}.bb | ||
2 | |||
3 | RDEPENDS="util-linux-native" | ||
4 | |||
5 | SRC_URI += "file://fix-prefix.patch;patch=1 " | ||
6 | S = "${WORKDIR}/fakeroot-${PV}" | ||
7 | |||
8 | inherit native | ||
9 | |||
10 | EXTRA_OECONF = " --program-prefix=" | ||
11 | |||
12 | # Compatability for the rare systems not using or having SYSV | ||
13 | python () { | ||
14 | if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0': | ||
15 | bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d) | ||
16 | } | ||
17 | |||
18 | do_stage_append () { | ||
19 | oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/ | ||
20 | } | ||
21 | |||