diff options
author | Koen Kooi <koen@openembedded.org> | 2007-05-15 17:16:42 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-05-15 17:16:42 +0000 |
commit | 7321a3498b02f87941d8c98f84b6e81f61d5237c (patch) | |
tree | 862863b9bb72110caddf2153dd3242ed680b910d /packages/libtool/libtool-native_1.5.22.bb | |
parent | 8eb6fe9baba3848a7619095671e839caa8de6174 (diff) | |
parent | 3566a861498bd0fa8c9e9fec093561fbc6daaaa3 (diff) |
merge of '42944a2fa933c39933c8b65cfa592c28efa57387'
and '5df6035ef92e0f27c836b65338f4cd1a09c506d4'
Diffstat (limited to 'packages/libtool/libtool-native_1.5.22.bb')
-rw-r--r-- | packages/libtool/libtool-native_1.5.22.bb | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/packages/libtool/libtool-native_1.5.22.bb b/packages/libtool/libtool-native_1.5.22.bb index 35d7f40b09..dec4bf1e14 100644 --- a/packages/libtool/libtool-native_1.5.22.bb +++ b/packages/libtool/libtool-native_1.5.22.bb @@ -12,8 +12,6 @@ SRC_URI_append = " file://libdir-la.patch;patch=1 \ file://install-path-check.patch;patch=1" S = "${WORKDIR}/libtool-${PV}" -STAGING_DATADIR_safe := "${STAGING_DATADIR}" - inherit native do_stage () { @@ -21,22 +19,12 @@ do_stage () { install -m 0755 libtoolize ${STAGING_BINDIR}/libtoolize oe_libinstall -a -so -C libltdl libltdl ${STAGING_LIBDIR} install -m 0644 libltdl/ltdl.h ${STAGING_INCDIR}/ - for dir in ${STAGING_DATADIR} ${STAGING_DATADIR_safe}; do - ltdldir="${dir}/libtool/libltdl" - install -d $dir/libtool \ - $ltdldir \ - $dir/aclocal - install -c config.guess $dir/libtool/config.guess - install -c config.sub $dir/libtool/config.sub - install -c -m 0644 ltmain.sh $dir/libtool/ - install -c -m 0644 libtool.m4 $dir/aclocal/ - install -c -m 0644 ltdl.m4 $dir/aclocal/ - - for src in README COPYING.LIB Makefile.am configure.ac \ - config-h.in ltdl.c ltdl.h; do - install -m 0644 libltdl/${src} ${ltdldir} - done - done + install -d ${STAGING_DATADIR}/libtool ${STAGING_DATADIR}/aclocal + install -c config.guess ${STAGING_DATADIR}/libtool/ + install -c config.sub ${STAGING_DATADIR}/libtool/ + install -c -m 0644 ltmain.sh ${STAGING_DATADIR}/libtool/ + install -c -m 0644 libtool.m4 ${STAGING_DATADIR}/aclocal/ + install -c -m 0644 ltdl.m4 ${STAGING_DATADIR}/aclocal/ } do_install () { |