diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-09-19 16:41:19 +0800 |
---|---|---|
committer | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-10-18 11:07:45 +0800 |
commit | 7b8bc16b38865fcd7774e73a527d2d84e37936a2 (patch) | |
tree | ef5441cf3fe29875f3358a00fd4d15e77d5a673c | |
parent | 3b2088b2bd2d7667c6a47c07dba32ec7ddc5a3ae (diff) | |
download | meta-selinux-7b8bc16b38865fcd7774e73a527d2d84e37936a2.tar.gz |
openssl: disable execstack in CFLAG
"-Wa,--noexecstack" will mark objects as requiring executable stack,
this is a dangerous CFLAG and would cause security issues.
So disable it as most distros did.
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
-rw-r--r-- | recipes-connectivity/openssl/openssl_1.0.0j.bbappend | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-connectivity/openssl/openssl_1.0.0j.bbappend b/recipes-connectivity/openssl/openssl_1.0.0j.bbappend new file mode 100644 index 0000000..388bdbf --- /dev/null +++ b/recipes-connectivity/openssl/openssl_1.0.0j.bbappend | |||
@@ -0,0 +1,3 @@ | |||
1 | PR .= ".1" | ||
2 | |||
3 | CFLAG += " -Wa,--noexecstack" | ||