mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Remove 0001-Remove-x86-specific-loop-in-my_convert.patch as it's fixed in new version [1]. Remove 0001-MDEV-38029-my_tzinfo-t-fails-for-certain-TZ-values-o.patch as its logic is included in new version [2]. Release note: https://mariadb.com/docs/release-notes/community-server/11.4/11.4.10 [1] https://github.com/MariaDB/server/commit/470487c [2] https://github.com/MariaDB/server/commit/a61a746 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
576 B
BlitzBasic
24 lines
576 B
BlitzBasic
require mariadb.inc
|
|
inherit native
|
|
|
|
PROVIDES += "mysql5-native"
|
|
DEPENDS = "ncurses-native zlib-native bison-native libpcre2-native \
|
|
libxml2-native gnutls-native fmt-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} = ""
|
|
PACKAGES = ""
|
|
EXTRA_OEMAKE = ""
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
|
|
install -d ${D}${bindir}
|
|
install -m 0755 sql/gen_lex_hash ${D}${bindir}/
|
|
install -m 0755 sql/gen_lex_token ${D}${bindir}/
|
|
install -m 0755 extra/comp_err ${D}${bindir}/
|
|
install -m 0755 scripts/comp_sql ${D}${bindir}/
|
|
install -m 0755 strings/uca-dump ${D}${bindir}/
|
|
}
|
|
|