diff options
author | Enric Balletbo i Serra <eballetbo@gmail.com> | 2009-07-09 20:35:30 +0200 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-09 21:58:47 +0100 |
commit | 86e45a8c0c7a2430da209c650947f8cff3f8cc6b (patch) | |
tree | 1b19b292f7910effd414a39073827323a92b2c08 /meta/packages/libowl | |
parent | 915d91845f762bffe28e4ef3af600bec62cd9dc5 (diff) | |
download | openembedded-core-86e45a8c0c7a2430da209c650947f8cff3f8cc6b.tar.gz openembedded-core-86e45a8c0c7a2430da209c650947f8cff3f8cc6b.tar.bz2 openembedded-core-86e45a8c0c7a2430da209c650947f8cff3f8cc6b.zip |
libowl: Use autotools_stage instead of broken custom staging function
This patch also fixes claws-mail, leafpad, pcmanfm, pimlico and puzzles
recipes using the proper include for owlwindowmenu.h
Signed-off-by: Enric Balletbo i Serra <eballetbo@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/libowl')
-rw-r--r-- | meta/packages/libowl/libowl_svn.bb | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/meta/packages/libowl/libowl_svn.bb b/meta/packages/libowl/libowl_svn.bb index c6aacdf75c..80dcb6b861 100644 --- a/meta/packages/libowl/libowl_svn.bb +++ b/meta/packages/libowl/libowl_svn.bb @@ -21,19 +21,4 @@ SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=${PN};proto=http" S = "${WORKDIR}/${PN}" -inherit autotools pkgconfig - -do_compile_prepend() { - # have to unstage the library first so that the tests build - rm -f ${STAGING_LIBDIR}/libowl.* - rm -f ${STAGING_INCDIR}/owl*.h -} - -do_stage() { - headers=`eval ls libowl/owl*.h` - for header in $headers; do - hdr_base=`eval basename $header` - install -m 644 $header ${STAGING_INCDIR}/$hdr_base - done - install -m 644 libowl/.libs/libowl.a ${STAGING_LIBDIR}/ -} +inherit autotools_stage pkgconfig |