diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2020-11-19 10:17:32 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-24 10:27:45 +0000 |
commit | 0d5b99b33643ae39126933444e5425097b73cfd5 (patch) | |
tree | 39ebcabc04f85513b91c79d8df799abce0cf5cf6 /meta/classes | |
parent | 1e41bd793fdd9b10341405c77b3f59a6c60249d7 (diff) | |
download | poky-0d5b99b33643ae39126933444e5425097b73cfd5.tar.gz |
distutils-common-base: fix LINKSHARED expansion
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>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/distutils-common-base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/distutils-common-base.bbclass b/meta/classes/distutils-common-base.bbclass index 94b5fd426d..43a38e5a3a 100644 --- a/meta/classes/distutils-common-base.bbclass +++ b/meta/classes/distutils-common-base.bbclass | |||
@@ -11,7 +11,7 @@ export LDCXXSHARED = "${CXX} -shared" | |||
11 | export CCSHARED = "-fPIC -DPIC" | 11 | export CCSHARED = "-fPIC -DPIC" |
12 | # LINKFORSHARED are the flags passed to the $(CC) command that links | 12 | # LINKFORSHARED are the flags passed to the $(CC) command that links |
13 | # the python executable | 13 | # the python executable |
14 | export LINKFORSHARED = "{SECURITY_CFLAGS} -Xlinker -export-dynamic" | 14 | export LINKFORSHARED = "${SECURITY_CFLAGS} -Xlinker -export-dynamic" |
15 | 15 | ||
16 | FILES_${PN} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*" | 16 | FILES_${PN} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*" |
17 | 17 | ||