diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-08-11 12:54:09 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-08-11 12:54:09 +0000 |
commit | 62c681cecac410a19ff99a6520ce05851bb75a6f (patch) | |
tree | a336da2622d05418ae23c2545af7b0d5f631264c | |
parent | efe32edaf83063be314b9f479c67c513cb760e4e (diff) |
make jpeg-native more robust
BKrev: 411a16f1mISK4jQte2cU2Llenmw_yQ
-rw-r--r-- | jpeg/jpeg-native_6b.oe | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/jpeg/jpeg-native_6b.oe b/jpeg/jpeg-native_6b.oe index e69de29bb2..5041b5f739 100644 --- a/jpeg/jpeg-native_6b.oe +++ b/jpeg/jpeg-native_6b.oe @@ -0,0 +1,14 @@ +include jpeg_${PV}.oe +inherit native +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/jpeg-${PV}" +DEPENDS = "" + +do_stage() { + install -m 644 jconfig.h ${STAGING_INCDIR}/jconfig.h + install -m 644 jpeglib.h ${STAGING_INCDIR}/jpeglib.h + install -m 644 jmorecfg.h ${STAGING_INCDIR}/jmorecfg.h + install -m 644 jerror.h ${STAGING_INCDIR}/jerror.h + install -m 644 jpegint.h ${STAGING_INCDIR}/jpegint.h + oe_libinstall -so libjpeg ${STAGING_LIBDIR} +} + |