[Libreoffice-commits] core.git: Makefile.in
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Sep 10 09:17:36 UTC 2018
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 410cbc4d872403947e94598cfb24685819b6bfd7
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Mon Sep 10 09:47:07 2018 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Mon Sep 10 11:17:14 2018 +0200
Work around "find: The environment is too large for exec()" errors on Windows
...similar to df9edbcd2883cec2d0596133131cfbc220dee91f 'Work around 'xargs:
environment is too large for exec' errors on Windows"
Change-Id: I50bc5c73b84e2d8e7adc70f72f9af2d23a0b3b36
Reviewed-on: https://gerrit.libreoffice.org/60241
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/Makefile.in b/Makefile.in
index 62964a7ccb7d..a18121d200ca 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -224,7 +224,7 @@ distclean : clean compilerplugins-clean
$(BUILDDIR)/instsetoo_native/util/openoffice.lst \
$(BUILDDIR)/lo.xcent \
$(BUILDDIR)/sysui/desktop/macosx/Info.plist
- $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;
+ $(if $(filter WNT,$(OS)),env -i PATH="$$PATH") $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;
#
# custom command
More information about the Libreoffice-commits
mailing list