diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-16 20:39:43 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-16 20:39:43 +0000 |
commit | 1369211ac6cdee1ab8aa64c0020a5d52f8540c39 (patch) | |
tree | c9aa37f13989b720619d3de4bd961203b4116fd1 /content/expat-1.95.6.oe | |
parent | d3aa25dd28cb8ae476872f38abf60333712c9cc7 (diff) |
Updates to .oe's to utilize the autotools oeclass, and removal of unnecessary 'set -e's now that its default.
BKrev: 3f67750f7hz7fa_5DclmHoTZT7vW3Q
Diffstat (limited to 'content/expat-1.95.6.oe')
-rw-r--r-- | content/expat-1.95.6.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/expat-1.95.6.oe b/content/expat-1.95.6.oe index c0cd17c8b5..fca7bb5147 100644 --- a/content/expat-1.95.6.oe +++ b/content/expat-1.95.6.oe @@ -5,8 +5,9 @@ RDEPENDS = libc6 SRC_URI = ${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz S = "${WORKDIR}/${P}" +inherit autotools + do_stage () { - set -e install -m 0644 lib/expat.h ${STAGING_DIR}/target/include/ install -m 0755 .libs/libexpat.so.0.4.0 ${STAGING_LIBDIR}/ ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so.1 @@ -15,7 +16,6 @@ do_stage () { } do_install () { - set -e oe_runmake prefix="${D}/${prefix}" \ bindir="${D}/${bindir}" \ libdir="${D}/${libdir}" \ |