diff options
-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 cba0113cd..6abf8a670 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 |