diff options
author | Richard Purdie <richard@openedhand.com> | 2008-01-28 19:37:56 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-01-28 19:37:56 +0000 |
commit | 93240b58fe0a3c1a2a99fcaccb37c4dcc489dd3d (patch) | |
tree | f97216ce8c22a39424c385790d1e867d2e2127f1 /meta/packages/fakeroot | |
parent | c17b326dbf3e813f69921f270c2c397a89e444b2 (diff) | |
download | openembedded-core-93240b58fe0a3c1a2a99fcaccb37c4dcc489dd3d.tar.gz openembedded-core-93240b58fe0a3c1a2a99fcaccb37c4dcc489dd3d.tar.bz2 openembedded-core-93240b58fe0a3c1a2a99fcaccb37c4dcc489dd3d.zip |
fakeroot: Add .so file to the the normal package so it works
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3609 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/fakeroot')
-rw-r--r-- | meta/packages/fakeroot/fakeroot_1.7.1.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/packages/fakeroot/fakeroot_1.7.1.bb b/meta/packages/fakeroot/fakeroot_1.7.1.bb index cba0113cdb..6abf8a6702 100644 --- a/meta/packages/fakeroot/fakeroot_1.7.1.bb +++ b/meta/packages/fakeroot/fakeroot_1.7.1.bb @@ -4,14 +4,15 @@ SECTION = "base" LICENSE = "GPL" # fakeroot needs getopt which is provided by the util-linux package RDEPENDS = "util-linux" -PR = "r1" +PR = "r2" SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.tar.gz \ file://autofoo.patch;patch=1" inherit autotools -FILES_${PN} =+ "${libdir}/libfakeroot-*.so" +# The fakeroot script requires the .so link to be present +FILES_${PN} =+ "${libdir}/libfakeroot-*.so ${libdir}/libfakeroot.so" do_stage() { install -d ${STAGING_INCDIR}/fakeroot |