aboutsummaryrefslogtreecommitdiffstats
path: root/Configurations/README
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-22 13:52:46 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-22 16:36:58 +0100
commit84af1bae68950a6993b56e39beff905d23fb74c8 (patch)
tree1253d6dbe8111cd926e028661939e4569cdfce84 /Configurations/README
parent9e04edf2f309e7edc3f4c9a09d444b2fd23a1e46 (diff)
downloadopenssl-84af1bae68950a6993b56e39beff905d23fb74c8.tar.gz
Clean away $config{no_shared} since we have $disabled{shared}
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations/README')
-rw-r--r--Configurations/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/README b/Configurations/README
index 454c8f375e..c031884896 100644
--- a/Configurations/README
+++ b/Configurations/README
@@ -430,7 +430,7 @@ example, the above would have "something" used, since 1 is true.
Together with the use of Text::Template, this can be used as
conditions based on something in the passed variables, for example:
- IF[{- $config{no_shared} -}]
+ IF[{- $disabled{shared} -}]
LIBS=libcrypto
SOURCE[libcrypto]=...
ELSE