Skip to content
Snippets Groups Projects
Verified Commit 086ad983 authored by Andrei Gherzan's avatar Andrei Gherzan :penguin:
Browse files

jool: Fix override syntax


Signed-off-by: Andrei Gherzan's avatarAndrei Gherzan <andrei.gherzan@huawei.com>
parent 7272bf28
No related branches found
No related tags found
1 merge request!30flavours/zephyr/local.conf.sample: Bump CONF_VERSION
...@@ -13,21 +13,21 @@ SRC_URI += "file://0001-Build-system-changes-to-be-handled-by-yocto-recipe.patch ...@@ -13,21 +13,21 @@ SRC_URI += "file://0001-Build-system-changes-to-be-handled-by-yocto-recipe.patch
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
DEPENDS = "libnl iptables" DEPENDS = "libnl iptables"
DEPENDS_append_libc-musl = " argp-standalone" DEPENDS:append:libc-musl = " argp-standalone"
inherit pkgconfig autotools inherit pkgconfig autotools
CFLAGS += "-I${STAGING_INCDIR}" CFLAGS += "-I${STAGING_INCDIR}"
LDFLAGS += "-L${STAGING_LIBDIR}" LDFLAGS += "-L${STAGING_LIBDIR}"
do_compile_append () { do_compile:append () {
oe_runmake -C ${S}/src/usr/iptables/ oe_runmake -C ${S}/src/usr/iptables/
} }
do_install_append () { do_install:append () {
install -d ${D}/${libdir}/xtables install -d ${D}/${libdir}/xtables
install ${S}/src/usr/iptables/*.so ${D}/${libdir}/xtables install ${S}/src/usr/iptables/*.so ${D}/${libdir}/xtables
} }
FILES_${PN} += "${datadir}/bash-completion" FILES:${PN} += "${datadir}/bash-completion"
FILES_${PN} += "${libdir}/xtables/*.so" FILES:${PN} += "${libdir}/xtables/*.so"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment