From abe256e7951e6d57f8f6b4364ea696eb4ead3852 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 6 Mar 2018 20:35:30 +0100 Subject: Make "make variables" config attributes for overridable flags With the support of "make variables" comes the possibility for the user to override them. However, we need to make a difference between defaults that we use (and that should be overridable by the user) and flags that are crucial for building OpenSSL (should not be overridable). Typically, overridable flags are those setting optimization levels, warnings levels, that kind of thing, while non-overridable flags are, for example, macros that indicate aspects of how the config target should be treated, such as L_ENDIAN and B_ENDIAN. We do that differentiation by allowing upper case attributes in the config targets, named exactly like the "make variables" we support, and reserving the lower case attributes for non-overridable project flags. Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/5534) --- tools/c_rehash.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/c_rehash.in') diff --git a/tools/c_rehash.in b/tools/c_rehash.in index e658222..3a9e44a 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -1,4 +1,4 @@ -#!{- $config{hashbangperl} -} +#!{- $config{HASHBANGPERL} -} # {- join("\n# ", @autowarntext) -} # Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved. -- cgit v1.1