mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Add the missing $ so SECURITY_CFLAGS actually gets expanded. (From OE-Core rev: 6ed2f892ebb0b4e30a3bf167eac68027ea378a2d) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
export STAGING_INCDIR
|
|
export STAGING_LIBDIR
|
|
|
|
# LDSHARED is the ld *command* used to create shared library
|
|
export LDSHARED = "${CCLD} -shared"
|
|
# LDXXSHARED is the ld *command* used to create shared library of C++
|
|
# objects
|
|
export LDCXXSHARED = "${CXX} -shared"
|
|
# CCSHARED are the C *flags* used to create objects to go into a shared
|
|
# library (module)
|
|
export CCSHARED = "-fPIC -DPIC"
|
|
# LINKFORSHARED are the flags passed to the $(CC) command that links
|
|
# the python executable
|
|
export LINKFORSHARED = "${SECURITY_CFLAGS} -Xlinker -export-dynamic"
|
|
|
|
FILES_${PN} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*"
|
|
|
|
FILES_${PN}-staticdev += "\
|
|
${PYTHON_SITEPACKAGES_DIR}/*.a \
|
|
"
|
|
FILES_${PN}-dev += "\
|
|
${datadir}/pkgconfig \
|
|
${libdir}/pkgconfig \
|
|
${PYTHON_SITEPACKAGES_DIR}/*.la \
|
|
"
|