mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
recipes: Fix override syntax
Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|||||||
PV = "0.6+git${SRCPV}"
|
PV = "0.6+git${SRCPV}"
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
SRC_URI = "git://github.com/kexecboot/kexecboot.git"
|
SRC_URI = "git://github.com/kexecboot/kexecboot.git"
|
||||||
SRC_URI:append_libc-klibc = "\
|
SRC_URI:append:libc-klibc = "\
|
||||||
file://0001-kexecboot-Use-new-reboot-API-with-klibc.patch \
|
file://0001-kexecboot-Use-new-reboot-API-with-klibc.patch \
|
||||||
file://0001-make-Add-compiler-includes-in-cflags.patch \
|
file://0001-make-Add-compiler-includes-in-cflags.patch \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ PACKAGECONFIG[systemd] = "--enable-systemd --with-systemddir=${systemd_system_un
|
|||||||
EXTRA_OECONF = "ac_cv_path_BASHPATH=${base_bindir}/bash ap_cv_cc_pie=no"
|
EXTRA_OECONF = "ac_cv_path_BASHPATH=${base_bindir}/bash ap_cv_cc_pie=no"
|
||||||
EXTRA_OEMAKE = "tmpfilesdir_DATA="
|
EXTRA_OEMAKE = "tmpfilesdir_DATA="
|
||||||
|
|
||||||
#do_configure_prepend() {
|
#do_configure:prepend() {
|
||||||
# ( cd ${S}
|
# ( cd ${S}
|
||||||
# ${S}/autogen.sh )
|
# ${S}/autogen.sh )
|
||||||
#}
|
#}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
|
DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls."
|
||||||
DESCRIPTION:append_lirc = " This package contains the lirc daemon, libraries and tools."
|
DESCRIPTION:append:lirc = " This package contains the lirc daemon, libraries and tools."
|
||||||
DESCRIPTION:append_lirc-exec = " This package contains a daemon that runs programs on IR signals."
|
DESCRIPTION:append:lirc-exec = " This package contains a daemon that runs programs on IR signals."
|
||||||
DESCRIPTION:append_lirc-remotes = " This package contains some config files for remotes."
|
DESCRIPTION:append:lirc-remotes = " This package contains some config files for remotes."
|
||||||
DESCRIPTION:append_lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
|
DESCRIPTION:append:lirc-nslu2example = " This package contains a working config for RC5 remotes and a modified NSLU2."
|
||||||
HOMEPAGE = "http://www.lirc.org"
|
HOMEPAGE = "http://www.lirc.org"
|
||||||
SECTION = "console/network"
|
SECTION = "console/network"
|
||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=930f8aa500a47c7dab0f8efb5a1c9a40"
|
|||||||
# Note this is not officially supported and is just illustrated here to
|
# Note this is not officially supported and is just illustrated here to
|
||||||
# show an example of how it can be done
|
# show an example of how it can be done
|
||||||
# You'll also need your fortran recipe to depend on libgfortran
|
# You'll also need your fortran recipe to depend on libgfortran
|
||||||
#FORTRAN_forcevariable = ",fortran"
|
#FORTRAN:forcevariable = ",fortran"
|
||||||
#RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath"
|
#RUNTIMETARGET:append:pn-gcc-runtime = " libquadmath"
|
||||||
|
|
||||||
DEPENDS = "libgfortran"
|
DEPENDS = "libgfortran"
|
||||||
|
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ RDEPENDS:${PN}:class-target = " \
|
|||||||
# Note that to get ptest to pass you also need:
|
# Note that to get ptest to pass you also need:
|
||||||
#
|
#
|
||||||
# xattr in DISTRO_FEATURES
|
# xattr in DISTRO_FEATURES
|
||||||
# static ostree-prepare-root (PACKAGECONFIG_append_pn-ostree = " static")
|
# static ostree-prepare-root (PACKAGECONFIG:append:pn-ostree = " static")
|
||||||
# meta-python in your layers
|
# meta-python in your layers
|
||||||
# overlayfs in your kernel (KERNEL_EXTRA_FEATURES += "features/overlayfs/overlayfs.scc")
|
# overlayfs in your kernel (KERNEL_EXTRA_FEATURES += "features/overlayfs/overlayfs.scc")
|
||||||
# busybox built statically
|
# busybox built statically
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ EXTRA_OECONF:append:class-native = " with_x=no"
|
|||||||
LDFLAGS += "-lpython${PYTHON_BASEVERSION}${PYTHON_ABI}"
|
LDFLAGS += "-lpython${PYTHON_BASEVERSION}${PYTHON_ABI}"
|
||||||
BUILD_LDFLAGS += "-lpython${PYTHON_BASEVERSION}${PYTHON_ABI}"
|
BUILD_LDFLAGS += "-lpython${PYTHON_BASEVERSION}${PYTHON_ABI}"
|
||||||
|
|
||||||
#do_configure_prepend() {
|
#do_configure:prepend() {
|
||||||
# uthash sources are expected in uthash/src
|
# uthash sources are expected in uthash/src
|
||||||
# mkdir -p ${S}/uthash/src
|
# mkdir -p ${S}/uthash/src
|
||||||
# cp ${STAGING_INCDIR}/ut*.h ${S}/uthash/src
|
# cp ${STAGING_INCDIR}/ut*.h ${S}/uthash/src
|
||||||
|
|||||||
Reference in New Issue
Block a user