]> granicus.if.org Git - openssl/commit
Configure: add attributes to end product build.info variables
authorRichard Levitte <levitte@openssl.org>
Wed, 7 Nov 2018 09:44:05 +0000 (10:44 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 22 Jan 2019 11:35:39 +0000 (12:35 +0100)
commitc91f24d4cca5862f11876457e0ffb6dd54814814
treefd7f06766263fd5e3f021e20a5826901f3ec6bef
parent5d3af25934dc5a6850004d6e58af6a89df97e927
Configure: add attributes to end product build.info variables

Among others, this avoids having special variables like
PROGRAMS_NO_INST.  Instead, we can have something like this:

    PROGRAMS{noinst}=foo bar

Configure itself is entirely agnostic to these attributes, they are
simply passed to the build file templates, to be used as they see fit.

Attributes can also have values, for example:

    SCRIPTS{linkname=foo}=foo.pl

This could help indicate to build file templates that care that the
perl script 'foo.pl' should also exist with the name 'foo', preferably
as a symbolic link.

Fixes #7568

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7581)
Configure