diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-03-22 11:10:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-03-22 11:10:19 +0200 |
commit | 0cef52488bd5f01150681b0deb9e338337714a35 (patch) | |
tree | 0a6296e972767322cd26178927a21f51d0a83ec0 | |
parent | 4a74a7088f97baa018b8e3d688a46f60f65662f9 (diff) |
Fix bug in ODB make rules
-rw-r--r-- | build/import/odb/hxx-cxx.make | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/import/odb/hxx-cxx.make b/build/import/odb/hxx-cxx.make index 86c98fe..a67d6b7 100644 --- a/build/import/odb/hxx-cxx.make +++ b/build/import/odb/hxx-cxx.make @@ -32,19 +32,19 @@ ifeq ($(out_base),$(src_base)) $(odb_pattern): $(src_base)/%.$(cxx_h_suffix) $(call message,odb $<,$(odb) $(cpp_options) \ -$(call expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ +$(call odb-expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ --output-dir $(dir $@) $<) else $(odb_pattern): $(src_base)/%.$(cxx_h_suffix) | $$(dir $$@). $(call message,odb $<,$(odb) $(cpp_options) \ -$(call expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ +$(call odb-expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ --output-dir $(dir $@) $<) $(odb_pattern): $(out_base)/%.$(cxx_h_suffix) | $$(dir $$@). $(call message,odb $<,$(odb) $(cpp_options) \ -$(call expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ +$(call odb-expand-cpp-options,$^) $(cxx_pp_extra_options) $(odb_options) \ --output-dir $(dir $@) $<) endif |