Skip to content

Commit

Permalink
Allow setting RCFLAGS as Configure option or environment variable
Browse files Browse the repository at this point in the history
Reviewed-by: Tim Hudson <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
(Merged from openssl#8803)
  • Loading branch information
Wojciech Kaluza authored and levitte committed May 2, 2019
1 parent a583172 commit 0c4e984
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -611,6 +611,7 @@ my %useradd = (
CXXFLAGS => [],
LDFLAGS => [],
LDLIBS => [],
RCFLAGS => [],
);

my %user_synonyms = (
Expand Down

0 comments on commit 0c4e984

Please sign in to comment.