diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-02 22:16:42 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-02 22:16:42 +0000 |
commit | d20d9914ea43abaf0d6c6e9cf18d91faf0431da2 (patch) | |
tree | f767068b61d823ccd539bd164a9d6b7987c54370 /libtool | |
parent | c9ba991a3c115f59afea73879ba8ffc8eb13d4a0 (diff) |
Various build bugfixes, as spotted in my recent oemake run.
BKrev: 3ff5edcaWEB85eU9ztdxwMRHWdMo1A
Diffstat (limited to 'libtool')
-rw-r--r-- | libtool/libtool_1.4.3.oe | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libtool/libtool_1.4.3.oe b/libtool/libtool_1.4.3.oe index e69de29bb2..25a0f545fc 100644 --- a/libtool/libtool_1.4.3.oe +++ b/libtool/libtool_1.4.3.oe @@ -0,0 +1,26 @@ +PR = r0 + +DESCRIPTION = Generic library support script\ + This is GNU libtool, a generic library support script. Libtool hides\ + the complexity of generating special library types (such as shared\ + libraries) behind a consistent interface. To use libtool, add the\ + new generic library building commands to your Makefile, Makefile.in,\ + or Makefile.am. See the documentation for details. Libtool supports\ + building static libraries on all platforms.\ + Libtool supports generation of C, C++ and Java libraries. + +DEPENDS= + +SRC_URI = ${DEBIAN_MIRROR}/main/libt/${PN}/${PN}_${PV}.orig.tar.gz \ + file://${FILESDIR}/debian.patch;patch=1 \ + file://${FILESDIR}/libdir.patch;patch=1 \ + file://${FILESDIR}/sedvar.patch;patch=1 \ + file://${FILESDIR}/libtoolize-staging.patch;patch=1 +S = "${WORKDIR}/${P}" + +inherit autotools + +EXTRA_OECONF = --disable-ltdl-install +do_configure_prepend () { + ./bootstrap +} |