[Libreoffice-commits] .: sal/rtl
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Tue Nov 22 02:01:23 PST 2011
sal/rtl/source/makefile.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 171855c21eeedca46fe0cf2ce4f566957e618a45
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Nov 22 11:01:06 2011 +0100
rtlbootstrap.mk.cxx needs to be a C++ file (including C++ macros.hxx).
diff --git a/sal/rtl/source/makefile.mk b/sal/rtl/source/makefile.mk
index 07c36d3..ff8ee91 100644
--- a/sal/rtl/source/makefile.mk
+++ b/sal/rtl/source/makefile.mk
@@ -159,5 +159,5 @@ $(ALWAYSDBGFILES):
ALLTAR : $(BOOTSTRAPMK)
$(BOOTSTRAPMK) :
- (echo '#include "macro.hxx"'; echo RTL_OS:=THIS_OS; echo RTL_ARCH:=THIS_ARCH) >$(BOOTSTRAPMK).c
- $(CC) -E $(CFLAGS) $(INCLUDE_C) $(CFLAGSCC) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(BOOTSTRAPMK).c | $(GREP) '^RTL_' | $(SED) -e 's/"//g' >$@
+ (echo '#include "macro.hxx"'; echo RTL_OS:=THIS_OS; echo RTL_ARCH:=THIS_ARCH) >$(BOOTSTRAPMK).cxx
+ $(CXX) -E $(CFLAGS) $(INCLUDE_C) $(CFLAGSCC) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(BOOTSTRAPMK).cxx | $(GREP) '^RTL_' | $(SED) -e 's/"//g' >$@
More information about the Libreoffice-commits
mailing list