diff options
author | Andy Polyakov <appro@openssl.org> | 2018-03-28 10:06:32 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2018-03-29 14:33:01 +0200 |
commit | ff455d993ce13dbc8e308753aa15310f94231fab (patch) | |
tree | 8723152bb8d06ce50c6ff260d65669467e5e4574 /Configure | |
parent | Fix setbuf use for VMS C (diff) | |
download | openssl-ff455d993ce13dbc8e308753aa15310f94231fab.tar.xz openssl-ff455d993ce13dbc8e308753aa15310f94231fab.zip |
Configure: harmonize syntax.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5770)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -593,13 +593,13 @@ my %target_attr_translate =( ); # Initialisers coming from 'config' scripts -$config{defines} = [ split(/$list_separator_re/, env('__CNF_CPPDEFINES')) ], -$config{includes} = [ split(/$list_separator_re/, env('__CNF_CPPINCLUDES')) ], -$config{cppflags} = [ env('__CNF_CPPFLAGS') || () ], -$config{cflags} = [ env('__CNF_CFLAGS') || () ], -$config{cxxflags} = [ env('__CNF_CXXFLAGS') || () ], -$config{lflags} = [ env('__CNF_LDFLAGS') || () ], -$config{ex_libs} = [ env('__CNF_LDLIBS') || () ], +$config{defines} = [ split(/$list_separator_re/, env('__CNF_CPPDEFINES')) ]; +$config{includes} = [ split(/$list_separator_re/, env('__CNF_CPPINCLUDES')) ]; +$config{cppflags} = [ env('__CNF_CPPFLAGS') || () ]; +$config{cflags} = [ env('__CNF_CFLAGS') || () ]; +$config{cxxflags} = [ env('__CNF_CXXFLAGS') || () ]; +$config{lflags} = [ env('__CNF_LDFLAGS') || () ]; +$config{ex_libs} = [ env('__CNF_LDLIBS') || () ]; $config{openssl_api_defines}=[]; $config{openssl_algorithm_defines}=[]; |