diff options
author | Koen Kooi <koen@openembedded.org> | 2010-04-14 19:01:07 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-04-14 19:01:07 +0200 |
commit | e2e6e9a8c2eb2080b988cfc8ba8441839c8a0b35 (patch) | |
tree | 91a28af5ec69ac323e09443e82181e93900636ca /recipes/live555 | |
parent | 4349842aba02370af81d10aed80c9fc40935bb48 (diff) |
live555: also copy all headers into /usr/include
Diffstat (limited to 'recipes/live555')
-rw-r--r-- | recipes/live555/live555_20090602.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/live555/live555_20090602.bb b/recipes/live555/live555_20090602.bb index ef005a5a0a..a07a748d2b 100644 --- a/recipes/live555/live555_20090602.bb +++ b/recipes/live555/live555_20090602.bb @@ -7,7 +7,7 @@ HOMEPAGE = "http://live.com/" LICENSE = "LGPL" SECTION = "devel" -PR = "r2" +PR = "r3" SRC_URI = "http://www.live555.com/liveMedia/public/live.2009.06.02.tar.gz \ file://config.linux-cross" @@ -34,6 +34,10 @@ do_install() { cp -a ${S}/groupsock/include/*.hh ${D}${includedir}/groupsock/ cp -a ${S}/liveMedia/include/*.hh ${D}${includedir}/liveMedia/ cp -a ${S}/UsageEnvironment/include/*.hh ${D}${includedir}/UsageEnvironment/ + # Find all the headers + for i in $(find . -name "*.hh") $(find . -name "*.h") ; do + install ${i} ${D}${includedir} + done cp ${S}/*/*.a ${D}${libdir} } |