[Libreoffice-commits] core.git: Makefile.in
Stephan Bergmann
sbergman at redhat.com
Wed Feb 24 11:01:29 UTC 2016
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 832ceab088d9e3b4b9bcecdcc8b908c7a56e9b6e
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Feb 24 11:59:53 2016 +0100
Avoid quoting nonsense on Windows
...where "/opt/lo/bin/make.exe distclean" had started to fail with
> rm -fr C:/lo64/core/test-install
> rm -fr C:/lo64/core/instdir
> rm -fr C:/lo64/core/workdir
> C:/cygwin64/bin/find: paths must precede expression: rm
> Usage: C:/cygwin64/bin/find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
> Makefile:170: recipe for target 'distclean' failed
> make: *** [distclean] Error 1
Change-Id: I98ecb51ba1747d55aec0eb80f5ec5a257dd5af76
diff --git a/Makefile.in b/Makefile.in
index 33f3963..d9aef81 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -187,7 +187,7 @@ distclean : clean compilerplugins-clean
$(BUILDDIR)/ios/lo.xcconfig \
$(BUILDDIR)/lo.xcent \
$(BUILDDIR)/sysui/desktop/macosx/Info.plist
- $(FIND) $(SRCDIR)/solenv/gdb -name "*.pyc" -exec rm {} \;
+ $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;
#
# custom command
More information about the Libreoffice-commits
mailing list