diff options
Diffstat (limited to 'meta/packages/libtool/libtool-native_2.2.10.bb')
-rw-r--r-- | meta/packages/libtool/libtool-native_2.2.10.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/packages/libtool/libtool-native_2.2.10.bb b/meta/packages/libtool/libtool-native_2.2.10.bb new file mode 100644 index 0000000000..5af5d7b94a --- /dev/null +++ b/meta/packages/libtool/libtool-native_2.2.10.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | require libtool_${PV}.bb | ||
2 | |||
3 | DEPENDS = "" | ||
4 | |||
5 | PR = "r0" | ||
6 | SRC_URI_append = " file://cross_compile.patch " | ||
7 | |||
8 | inherit native | ||
9 | |||
10 | do_configure_prepend () { | ||
11 | # Remove any existing libtool m4 since old stale versions would break | ||
12 | # any upgrade | ||
13 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 | ||
14 | rm -f ${STAGING_DATADIR}/aclocal/lt*.m4 | ||
15 | } | ||
16 | |||
17 | do_install () { | ||
18 | autotools_do_install | ||
19 | install -d ${D}${bindir}/ | ||
20 | install -m 0755 ${HOST_SYS}-libtool ${D}${bindir}/${HOST_SYS}-libtool | ||
21 | } | ||