diff options
author | joshua stein <jcs@jcs.org> | 2020-01-01 20:03:06 -0600 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-02 21:03:53 +0100 |
commit | d61131945d15e64cdf7ab0a2cbe584a915599428 (patch) | |
tree | 9aff006bfc20d7a89e43ed09993d808da471f4f9 /Libraries/LibHTML | |
parent | c6170070edc1c6cf3707620a1300ec96a8db32c9 (diff) | |
download | serenity-d61131945d15e64cdf7ab0a2cbe584a915599428.zip |
Build: HOST_CXX -> USE_HOST_CXX
Allow HOST_CXX to be passed to make which will be the actual host
C++ compiler used, such as 'make HOST_CXX=clang++'.
Diffstat (limited to 'Libraries/LibHTML')
-rw-r--r-- | Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp/Makefile | 2 | ||||
-rw-r--r-- | Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp/Makefile b/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp/Makefile index 2fbac0c056..8b5a619135 100644 --- a/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp/Makefile +++ b/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_cpp/Makefile @@ -1,4 +1,4 @@ -HOST_CXX = 1 +USE_HOST_CXX = 1 PROGRAM = Generate_CSS_PropertyID_cpp diff --git a/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h/Makefile b/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h/Makefile index aff0892a8d..bc54f89441 100644 --- a/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h/Makefile +++ b/Libraries/LibHTML/CodeGenerators/Generate_CSS_PropertyID_h/Makefile @@ -1,4 +1,4 @@ -HOST_CXX = 1 +USE_HOST_CXX = 1 PROGRAM = Generate_CSS_PropertyID_h |