summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool/libtool.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool.inc')
-rw-r--r--meta/recipes-devtools/libtool/libtool.inc16
1 files changed, 12 insertions, 4 deletions
diff --git a/meta/recipes-devtools/libtool/libtool.inc b/meta/recipes-devtools/libtool/libtool.inc
index 9690e3b7bf..370d972aca 100644
--- a/meta/recipes-devtools/libtool/libtool.inc
+++ b/meta/recipes-devtools/libtool/libtool.inc
@@ -1,14 +1,22 @@
1SUMMARY = "Generic library support script" 1SUMMARY = "Generic library support script"
2DESCRIPTION = "This is GNU libtool, a generic library support script. Libtool hides \ 2DESCRIPTION = "This is GNU libtool, a generic library support script. \
3the complexity of generating special library types (such as shared \ 3Libtool hides the complexity of generating special library types \
4libraries) behind a consistent interface." 4(such as shared libraries) behind a consistent interface."
5HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html" 5HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html"
6SECTION = "devel" 6SECTION = "devel"
7LICENSE = "GPLv2, LGPLv2.1" 7LICENSE = "GPLv2, LGPLv2.1"
8LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ 8LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
9 file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06 " 9 file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
10 10
11SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ 11SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \
12 file://trailingslash.patch \ 12 file://trailingslash.patch \
13 file://prefix-manpage-fix.patch " 13 file://prefix-manpage-fix.patch "
14 14
15do_compile_prepend () {
16 # Sometimes this file doesn't get rebuilt, force the issue
17 rm -f ${S}/libltdl/config/ltmain.sh
18 make libltdl/config/ltmain.sh
19}
20
21inherit autotools
22EXTRA_AUTORECONF = "--exclude=libtoolize"