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>
This commit is contained in:
Xin Ouyang 2012-09-19 16:41:19 +08:00
parent 3b2088b2bd
commit 7b8bc16b38

View File

@ -0,0 +1,3 @@
PR .= ".1"
CFLAG += " -Wa,--noexecstack"