Allow setting RCFLAGS as Configure option or environment variable
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8803)
This commit is contained in:
parent
a583172dac
commit
0c4e984de2
1 changed files with 2 additions and 1 deletions
|
@ -594,7 +594,7 @@ my %user = (
|
|||
PERL => env('PERL') || ($^O ne "VMS" ? $^X : "perl"),
|
||||
RANLIB => env('RANLIB'),
|
||||
RC => env('RC') || env('WINDRES'),
|
||||
RCFLAGS => [],
|
||||
RCFLAGS => [ env('RCFLAGS') || () ],
|
||||
RM => undef,
|
||||
);
|
||||
# Info about what "make variables" may be prefixed with the cross compiler
|
||||
|
@ -611,6 +611,7 @@ my %useradd = (
|
|||
CXXFLAGS => [],
|
||||
LDFLAGS => [],
|
||||
LDLIBS => [],
|
||||
RCFLAGS => [],
|
||||
);
|
||||
|
||||
my %user_synonyms = (
|
||||
|
|
Loading…
Reference in a new issue