mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
a600fe808a
...
./bootstrap: Bootstrapping from checked-out netcf sources...
./bootstrap: consider installing git-merge-changelog from gnulib
./bootstrap: line 641:
tmp/sysroots/qemux86/usr/share/gnulib/gnulib-tool: No such file or
directory
...
The gnulib source was incorrectly populated to ${STAGING_DATADIR}.
While the build shared an existed sstate cache, the gnulib's
${SYSROOT_DESTDIR} was empty, the gnulib source code was not
found in sysroots.
We should use do_install task to install them to ${D}, and the
default do_populate_sysroot task will populate them to
${STAGING_DATADIR}.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
33 lines
1.0 KiB
BlitzBasic
33 lines
1.0 KiB
BlitzBasic
SUMMARY = "The GNU portability library"
|
|
DESCRIPTION = "A collection of software subroutines which are designed to \
|
|
be usable on many operating systems. The goal of the project \
|
|
is to make it easy for free software authors to make their \
|
|
software run on many operating systems. Since source is designed \
|
|
to be copied from gnulib, it is not a library per-se, as much \
|
|
as a collection of portable idioms to be used in other projects."
|
|
|
|
HOMEPAGE = "http://www.gnu.org/software/gnulib/"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2+"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e4cf3810f33a067ea7ccd2cd889fed21"
|
|
SRCREV = "24379a9217fa4bd62685795aaaa010fd90ced9e3"
|
|
SRC_URI = "git://git.sv.gnu.org/gnulib;protocol=git \
|
|
"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
cd ${S}
|
|
git checkout master
|
|
git clone ${S} ${D}/${datadir}/gnulib
|
|
}
|
|
|
|
do_patch[noexec] = "1"
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
do_package[noexec] = "1"
|
|
do_packagedata[noexec] = "1"
|
|
do_package_write_ipk[noexec] = "1"
|
|
do_package_write_deb[noexec] = "1"
|
|
do_package_write_rpm[noexec] = "1"
|