summaryrefslogtreecommitdiff
path: root/content/tslib.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-09-16 20:39:43 +0000
committerChris Larson <clarson@kergoth.com>2003-09-16 20:39:43 +0000
commit1369211ac6cdee1ab8aa64c0020a5d52f8540c39 (patch)
treec9aa37f13989b720619d3de4bd961203b4116fd1 /content/tslib.oe
parentd3aa25dd28cb8ae476872f38abf60333712c9cc7 (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/tslib.oe')
-rw-r--r--content/tslib.oe9
1 files changed, 2 insertions, 7 deletions
diff --git a/content/tslib.oe b/content/tslib.oe
index e8beb09bda..b882e3c6aa 100644
--- a/content/tslib.oe
+++ b/content/tslib.oe
@@ -8,12 +8,12 @@ SRC_URI_append = " file://${FILESDIR}/multievent.patch;patch=1"
SRC_URI_append = " file://${FILESDIR}/envvar_doc.patch;patch=1"
#SRC_URI_append = " file://${FILESDIR}/raw.patch;patch=1"
#SRC_URI_append = " file://${FILESDIR}/collie-module.patch;patch=1"
-
S = ${WORKDIR}/${PN}
+inherit autotools
+
EXTRA_OEMAKE=
do_compile_prepend () {
- set -e
./autogen.sh
}
@@ -25,8 +25,3 @@ do_stage () {
install -m 0644 src/tslib.h ${STAGING_DIR}/target/include/
install -m 0644 src/tslib-private.h ${STAGING_DIR}/target/include/
}
-
-do_install () {
- set -e
- oe_runmake DESTDIR="${D}" install
-}