aboutsummaryrefslogtreecommitdiffstats
path: root/libdaemon
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-03-22 22:37:29 +0000
committerChris Larson <clarson@kergoth.com>2004-03-22 22:37:29 +0000
commitf249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch)
tree93735f3e25beab7ac8bf066c504df17b244db4eb /libdaemon
parent11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff)
downloadopenembedded-f249735ad71fd5f13bfd295c55e1e0d596a1dbff.tar.gz
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'libdaemon')
-rw-r--r--libdaemon/libdaemon_0.3.oe10
1 files changed, 4 insertions, 6 deletions
diff --git a/libdaemon/libdaemon_0.3.oe b/libdaemon/libdaemon_0.3.oe
index 2315d3d8c7..72b41e3870 100644
--- a/libdaemon/libdaemon_0.3.oe
+++ b/libdaemon/libdaemon_0.3.oe
@@ -2,20 +2,18 @@ DESCRIPTION = "libdaemon is a lightweight C library which eases the writing of U
DEPENDS = "virtual/libc"
RDEPENDS = "libc6"
-SRC_URI = http://0pointer.de/lennart/projects/libdaemon/libdaemon-${PV}.tar.gz
+SRC_URI = "http://0pointer.de/lennart/projects/libdaemon/libdaemon-${PV}.tar.gz"
inherit autotools libtool
-EXTRA_OECONF = --disable-lynx
+EXTRA_OECONF = "--disable-lynx"
do_stage () {
- install -m 0755 src/.libs/libdaemon.so.0.1.0 ${STAGING_LIBDIR}/
+ oe_soinstall src/.libs/libdaemon.so.0.1.0 ${STAGING_LIBDIR}/
install -m 0644 src/.libs/libdaemon.a ${STAGING_LIBDIR}/
install -m 0644 src/.libs/libdaemon.lai ${STAGING_LIBDIR}/libdaemon.la
- ln -sf libdaemon.so.0.1.0 ${STAGING_LIBDIR}/libdaemon.so.0
- ln -sf libdaemon.so.0.1.0 ${STAGING_LIBDIR}/libdaemon.so
install -d ${STAGING_INCDIR}/libdaemon
for i in dlog.h dfork.h dsignal.h dnonblock.h dpid.h; do
- install -m 0644 src/$i ${STAGING_INCDIR}/libdaemon/
+ install -m 0644 ${S}/src/$i ${STAGING_INCDIR}/libdaemon/
done
}