aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-22 11:10:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-05-27 09:34:24 -0400
commitbadf755013a76b4eaf955fb5a3e9a6361e1b52dc (patch)
tree6e6b2678d74d4fceb6aeb54137ad0b09dfa5e108
parent6b2dc5fbc2c2ea8760ef6b09178c4f50b2b38879 (diff)
Fix bug in ODB make rules
-rw-r--r--build/import/odb/hxx-cxx.make6
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