diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-14 16:03:17 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-14 16:03:17 +0000 |
commit | 1bc614ec4a98507f0aa8e3ca7c35d33e60d44c4a (patch) | |
tree | 795b38f02e430296f0f30de1b52b4ae185d5b4dc /libtool | |
parent | 8051288b2a8a5f7d02ef3e3aa14b7305d9598469 (diff) |
Put the directfb pkgconfig in the correct place so things can find it, and minor libtool bugfix.
BKrev: 3f8c1e45jO-2MJnbcXjsHjR1Ef-r4Q
Diffstat (limited to 'libtool')
-rw-r--r-- | libtool/libtool-cross-1.5.oe | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libtool/libtool-cross-1.5.oe b/libtool/libtool-cross-1.5.oe index e69de29bb2..748ec7c141 100644 --- a/libtool/libtool-cross-1.5.oe +++ b/libtool/libtool-cross-1.5.oe @@ -0,0 +1,31 @@ +include libtool-${PV}.oe +#inherit cross +SRC_URI_append = ' file://${FILESDIR}/libdir-la.patch;patch=1 \ + file://${FILESDIR}/sedvar.patch;patch=1 \ + file://${FILESDIR}/tag.patch;patch=1 \ + file://${FILESDIR}/libtoolize-staging.patch;patch=1 \ + file://${FILESDIR}/prefix.patch;patch=1 \ + file://${FILESDIR}/chmod.patch;patch=1' +S = ${WORKDIR}/libtool-${PV} +FILESDIR = ${TOPDIR}/libtool/libtool-${PV} + +prefix=${CROSS_DIR} +exec_prefix=${prefix} + +EXTRA_OECONF_append = " --program-prefix=${TARGET_SYS}-" + +do_stage () { + oe_runmake install + install -d ${STAGING_DIR}/share/{libtool,aclocal} + install -m 0755 ${CROSS}libtool ${STAGING_BINDIR}/${CROSS}libtool + install -m 0755 libtoolize ${STAGING_BINDIR}/${CROSS}libtoolize + install -c config.guess ${STAGING_DIR}/share/libtool/${CROSS}config.guess + install -c config.sub ${STAGING_DIR}/share/libtool/${CROSS}config.sub + install -c -m 0644 ltmain.sh ${STAGING_DIR}/share/libtool/ + install -c -m 0644 libtool.m4 ${STAGING_DIR}/share/aclocal/ + install -c -m 0644 ltdl.m4 ${STAGING_DIR}/share/aclocal/ +} + +do_install () { + true +} |