Hello, I find it mildly annoying that gbuild outputs "[ build CXX ] starmath/source/types", without the .cxx extension, i.e. a non-existent file. Especially since other target types like LNK do output "[ build LNK ] Library/libsmlo.so". Any objections to the attached patch?
-- Lubos Lunak l.lu...@suse.cz
From 464ede47d4d22326780413ef30a0f39fec6b07aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= <l.lu...@suse.cz> Date: Wed, 14 Dec 2011 16:41:01 +0100 Subject: [PATCH] make gbuild output [Build CXX] filename also with the .cxx extension --- solenv/gbuild/platform/WNT_INTEL_MSC.mk | 2 +- solenv/gbuild/platform/com_GCC_class.mk | 2 +- solenv/gbuild/platform/solaris.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk b/solenv/gbuild/platform/WNT_INTEL_MSC.mk index 5f8fb1c..a81215d 100644 --- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk +++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk @@ -300,7 +300,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) \ diff --git a/solenv/gbuild/platform/com_GCC_class.mk b/solenv/gbuild/platform/com_GCC_class.mk index 61afbc1..5bf7740 100644 --- a/solenv/gbuild/platform/com_GCC_class.mk +++ b/solenv/gbuild/platform/com_GCC_class.mk @@ -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) \ diff --git a/solenv/gbuild/platform/solaris.mk b/solenv/gbuild/platform/solaris.mk index a51edbf..6287cfe 100644 --- a/solenv/gbuild/platform/solaris.mk +++ b/solenv/gbuild/platform/solaris.mk @@ -173,7 +173,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) \ -- 1.7.3.4
_______________________________________________ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice