diff options
author | Koen Kooi <koen@openembedded.org> | 2008-03-19 15:42:07 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-03-19 15:42:07 +0000 |
commit | 084a36147a921de7a216a62eea682e65a89b303d (patch) | |
tree | 26908fc6cb1591b801f8fa9a9d2a3352d2e32c1f /packages/gettext | |
parent | 97a60902a1f35d6a772f858302f507e8ad0958fc (diff) |
gettext: switch to autotools_stage_all
Diffstat (limited to 'packages/gettext')
-rw-r--r-- | packages/gettext/gettext_0.14.1.bb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/packages/gettext/gettext_0.14.1.bb b/packages/gettext/gettext_0.14.1.bb index 2184b8c863..d5afbaf520 100644 --- a/packages/gettext/gettext_0.14.1.bb +++ b/packages/gettext/gettext_0.14.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "The GNU internationalization library." HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" SECTION = "libs" LICENSE = "GPL" -PR = "r7" +PR = "r8" PROVIDES = "virtual/libintl" SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ @@ -43,10 +43,5 @@ FILES_libgettextlib = "${libdir}/libgettextlib-*.so*" FILES_libgettextsrc = "${libdir}/libgettextsrc-*.so*" do_stage () { - autotools_stage_includes - oe_libinstall -so -C gettext-tools/lib libgettextlib ${STAGING_LIBDIR}/ - oe_libinstall -so -C gettext-tools/src libgettextpo ${STAGING_LIBDIR}/ - oe_libinstall -so -C gettext-tools/src libgettextsrc ${STAGING_LIBDIR}/ - oe_libinstall -so -C gettext-tools/intl libintl ${STAGING_LIBDIR}/ - oe_libinstall -so -C gettext-runtime/lib libasprintf ${STAGING_LIBDIR}/ + autotools_stage_all } |