make gbuild output [Build CXX] filename also with the .cxx extension

This commit is contained in:
Luboš Luňák
2011-12-14 16:41:01 +01:00
parent a4c82d571e
commit b55dbc1e19
3 changed files with 3 additions and 3 deletions

View File

@@ -299,7 +299,7 @@ endef
# CxxObject class
define gb_CxxObject__command
$(call gb_Output_announce,$(2),$(true),CXX,3)
$(call gb_Output_announce,$(2).cxx,$(true),CXX,3)
$(call gb_Helper_abbreviate_dirs_native,\
mkdir -p $(dir $(1)) $(dir $(4)) && \
$(gb_CXX) \

View File

@@ -44,7 +44,7 @@ endef
# $(call gb_CxxObject__command,object,relative-source,source,dep-file)
define gb_CxxObject__command
$(call gb_Output_announce,$(2),$(true),CXX,3)
$(call gb_Output_announce,$(2).cxx,$(true),CXX,3)
$(call gb_Helper_abbreviate_dirs,\
mkdir -p $(dir $(1)) $(dir $(4)) && \
$(gb_CXX) \

View File

@@ -179,7 +179,7 @@ endef
# CxxObject class
define gb_CxxObject__command
$(call gb_Output_announce,$(2),$(true),CXX,3)
$(call gb_Output_announce,$(2).cxx,$(true),CXX,3)
$(call gb_Helper_abbreviate_dirs,\
mkdir -p $(dir $(1)) $(dir $(4)) && \
$(gb_CXX) \