mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
Remove the 0001-Ensure-compatibility-with-ARMv9-by-updating-.arch-di.patch
patch as its logic included in new version [1].
Release notes: https://mariadb.com/docs/release-notes/community-server/11.4/11.4.9
[1] e8026a5019
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}/
|
|
}
|
|
|