[Libreoffice-commits] core.git: Makefile.in
Markus Mohrhard
markus.mohrhard at googlemail.com
Tue May 24 07:13:44 UTC 2016
Makefile.in | 5 +++++
1 file changed, 5 insertions(+)
New commits:
commit daa721dcb7e381fb8e254592eff31aef86efead8
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Tue May 24 09:12:41 2016 +0200
make the symbol generation also work correctly on windows
Change-Id: I2fc5e8fb2535ac076f045435c828126a52ea5bbd
diff --git a/Makefile.in b/Makefile.in
index 5da8e93..5e8b9de 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -383,7 +383,12 @@ findunusedheaders:
symbols:
rm -fr $(WORKDIR)/symbols/
mkdir -p $(WORKDIR)/symbols/
+ifeq ($(OS),WNT)
+ $(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/windows/binaries/dump_syms.exe $(WORKDIR)/symbols/ $(INSTDIR)/program/*
+else
$(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/linux/dump_syms/dump_syms $(WORKDIR)/symbols/ $(INSTDIR)/program/*
+endif
+
cd $(WORKDIR)/symbols/ && zip -r $(WORKDIR)/symbols.zip *
upload-symbols:
More information about the Libreoffice-commits
mailing list