mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
build fails else with | + make -j 8 -l 6 cc=ccache gcc | make: *** No rule to make target 'gcc'. Stop. (From OE-Core rev: 5729c1563359e12ebb4451bb1ce7ba3fff4ed2d4) Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.0 KiB
BlitzBasic
29 lines
1.0 KiB
BlitzBasic
# note that we allow for us to use data later than our code version
|
|
#
|
|
SUMMARY = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
|
|
LICENSE = "PD & BSD & BSD-3-Clause"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ef1a352b901ee7b75a75df8171d6aca7"
|
|
|
|
SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode \
|
|
http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata"
|
|
UPSTREAM_CHECK_URI = "http://www.iana.org/time-zones"
|
|
|
|
SRC_URI[tzcode.md5sum] = "afaf15deb13759e8b543d86350385b16"
|
|
SRC_URI[tzcode.sha256sum] = "4d1735bb54e22b8d7443d4d1f1a13d007ae11be79a35e51f8e8322fb8e292d40"
|
|
SRC_URI[tzdata.md5sum] = "50dc0dc50c68644c1f70804f2e7a1625"
|
|
SRC_URI[tzdata.sha256sum] = "f8242a522ea3496b0ce4ff4f2e75a049178da21001a08b8e666d8cbe07d18086"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit native
|
|
|
|
EXTRA_OEMAKE += "cc='${CC}'"
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}/
|
|
install -m 755 zic ${D}${bindir}/
|
|
install -m 755 zdump ${D}${bindir}/
|
|
install -m 755 tzselect ${D}${bindir}/
|
|
}
|