diff options
author | Koen Kooi <koen@openembedded.org> | 2010-06-24 15:04:03 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-24 15:04:03 +0200 |
commit | d602d85d3afa7e5d0834a13f5ef5c211f3574872 (patch) | |
tree | 65956188a6a9e3987d7c1964aa12e1c7308b1c8d /recipes/devicekit/libatasmart_0.13.bb | |
parent | 744c4322b5d4cfb4123ccdc8065ccdc68e7a7f40 (diff) |
libatasmart: convert to new style staging
Diffstat (limited to 'recipes/devicekit/libatasmart_0.13.bb')
-rw-r--r-- | recipes/devicekit/libatasmart_0.13.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/devicekit/libatasmart_0.13.bb b/recipes/devicekit/libatasmart_0.13.bb index 31565f6cfb..719675b1cd 100644 --- a/recipes/devicekit/libatasmart_0.13.bb +++ b/recipes/devicekit/libatasmart_0.13.bb @@ -4,9 +4,9 @@ SRCREV = "a80d7d5c25e88adea7b8e843cdb57143e6cfb46b" SRC_URI = "git://git.0pointer.de/libatasmart.git;protocol=git" S = "${WORKDIR}/git" +PR = "r1" -inherit autotools_stage lib_package -AUTOTOOLS_STAGE_PKGCONFIG = "1" +inherit autotools lib_package do_compile_prepend() { rm strpool -f @@ -14,7 +14,7 @@ do_compile_prepend() { chmod +x strpool } -do_stage_append() { - sed -i -e s://:/:g -e s:${base_libdir}/libudev.la:-ludev:g ${STAGING_LIBDIR}/libatasmart.la +do_install_append() { + sed -i -e s://:/:g -e s:${base_libdir}/libudev.la:-ludev:g ${D}${libdir}/libatasmart.la } |