diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-12-07 16:07:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-12-07 16:09:26 +0100 |
commit | a6d6d1c24ba497ac8586857baed9d4fb155a17b1 (patch) | |
tree | bfd4b26854fb40ae3e9d0f01971f61359c507111 /config_host.mk.in | |
parent | 45237f80237f202b278f0561e6b93db2a2306b6a (diff) |
CLANGPLUGIN_CPPFLAGS did not actually work
...it just appeared to work on machines that happen to have /usr/bin/clang. So
hoist CLANGDIR/CLANGBUILD from compilerplugins/Makefile-clang.mk to configure.ac
instead.
Change-Id: Ie5d9c6bb8e9d0caa1583d78c8693f06b69873095
Diffstat (limited to 'config_host.mk.in')
-rw-r--r-- | config_host.mk.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config_host.mk.in b/config_host.mk.in index 12a075265996..b1406004cd15 100644 --- a/config_host.mk.in +++ b/config_host.mk.in @@ -53,7 +53,8 @@ export CDR_CFLAGS=$(gb_SPACE)@CDR_CFLAGS@ export CDR_LIBS=$(gb_SPACE)@CDR_LIBS@ @x_CFLAGS@ export CFLAGS=@CFLAGS@ export CHECK_PARALLELISM?=@CHECK_PARALLELISM@ -export CLANGPLUGIN_CPPFLAGS=@CLANGPLUGIN_CPPFLAGS@ +export CLANGBUILD=@CLANGBUILD@ +export CLANGDIR=@CLANGDIR@ export CLUCENE_CFLAGS=$(gb_SPACE)@CLUCENE_CFLAGS@ export CLUCENE_LIBS=$(gb_SPACE)@CLUCENE_LIBS@ export CMIS_CFLAGS=$(gb_SPACE)@CMIS_CFLAGS@ |