summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-12-16 11:29:19 +0000
committerAndy Polyakov <appro@openssl.org>2005-12-16 11:29:19 +0000
commitd719e60cb40448ae6de4407ac7f2c25644eb1120 (patch)
tree3c2251e1b2b57d94c01d4f8f430dd0f5e0e21ec1 /Configure
parent0cb9d93d0c00a547bf2b45cf5a5af41df4e4dc9d (diff)
Allow for warning-free passing of -Wl options on config command line. One
possible usage is to pass -Wl,-z,-noexecstack on Linux to ensure the stack is marked non-executable. Well, -Wa,--noexecstack works fine too...
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index aa818ac053..ac532bcdb2 100755
--- a/Configure
+++ b/Configure
@@ -724,7 +724,7 @@ PROCESS_ARGS:
}
elsif (/^[-+]/)
{
- if (/^-[lL](.*)$/)
+ if (/^-[lL](.*)$/ or /^-Wl,/)
{
$libs.=$_." ";
}